Lines Matching refs:aStatic
26063 static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1]; in debugMutexAlloc() local
26077 if( id-2<0 || id-2>=ArraySize(aStatic) ){ in debugMutexAlloc()
26082 pNew = &aStatic[id-2]; in debugMutexAlloc()
140472 WhereTerm aStatic[1]; /* Initial static space for a[] */
140474 WhereTerm aStatic[8]; /* Initial static space for a[] */
143284 if( pOld!=pWC->aStatic ){
143864 memset(pOrWc->aStatic, 0, sizeof(pOrWc->aStatic));
143891 memset(pAndWC->aStatic, 0, sizeof(pAndWC->aStatic));
144682 pWC->nSlot = ArraySize(pWC->aStatic);
144683 pWC->a = pWC->aStatic;
144705 if( pWC->a!=pWC->aStatic ){
164997 void *aStatic[16]; /* Starter space for aArg[]. No malloc required */
164999 aArg = aStatic;
165020 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) );
165021 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn );
165022 if( (!aDyn && nArg==(int)ArraySize(aStatic))
212381 Fts5PoslistReader aStatic[4];
212382 Fts5PoslistReader *aIter = aStatic;
212402 if( aIter!=aStatic ) sqlite3_free(aIter);
212442 if( aIter!=aStatic ) sqlite3_free(aIter);
212464 Fts5PoslistReader aStatic[4];
212465 Fts5PoslistReader *aIter = aStatic;
212474 if( pPhrase->nTerm>ArraySize(aStatic) ){
212538 if( aIter!=aStatic ) sqlite3_free(aIter);
212597 Fts5NearTrimmer aStatic[4];
212598 Fts5NearTrimmer *a = aStatic;
212609 if( pNear->nPhrase>ArraySize(aStatic) ){
212613 memset(aStatic, 0, sizeof(aStatic));
212681 if( a!=aStatic ) sqlite3_free(a);