Lines Matching refs:aStatic
22997 static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1]; in debugMutexAlloc() local
23011 if( id-2<0 || id-2>=ArraySize(aStatic) ){ in debugMutexAlloc()
23016 pNew = &aStatic[id-2]; in debugMutexAlloc()
126117 WhereTerm aStatic[1]; /* Initial static space for a[] */
126119 WhereTerm aStatic[8]; /* Initial static space for a[] */
128457 if( pOld!=pWC->aStatic ){
128926 memset(pOrWc->aStatic, 0, sizeof(pOrWc->aStatic));
128953 memset(pAndWC->aStatic, 0, sizeof(pAndWC->aStatic));
129715 pWC->nSlot = ArraySize(pWC->aStatic);
129716 pWC->a = pWC->aStatic;
129738 if( pWC->a!=pWC->aStatic ){
144236 void *aStatic[16]; /* Starter space for aArg[]. No malloc required */
144238 aArg = aStatic;
144259 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) );
144260 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn );
144261 if( (!aDyn && nArg==(int)ArraySize(aStatic))
186237 Fts5PoslistReader aStatic[4];
186238 Fts5PoslistReader *aIter = aStatic;
186258 if( aIter!=aStatic ) sqlite3_free(aIter);
186298 if( aIter!=aStatic ) sqlite3_free(aIter);
186320 Fts5PoslistReader aStatic[4];
186321 Fts5PoslistReader *aIter = aStatic;
186329 if( pPhrase->nTerm>ArraySize(aStatic) ){
186391 if( aIter!=aStatic ) sqlite3_free(aIter);
186450 Fts5NearTrimmer aStatic[4];
186451 Fts5NearTrimmer *a = aStatic;
186462 if( pNear->nPhrase>ArraySize(aStatic) ){
186466 memset(aStatic, 0, sizeof(aStatic));
186534 if( a!=aStatic ) sqlite3_free(a);