Lines Matching refs:aStatic
20154 static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1]; in debugMutexAlloc() local
20168 if( id-2<0 || id-2>=ArraySize(aStatic) ){ in debugMutexAlloc()
20173 pNew = &aStatic[id-2]; in debugMutexAlloc()
118341 WhereTerm aStatic[1]; /* Initial static space for a[] */
118343 WhereTerm aStatic[8]; /* Initial static space for a[] */
120129 if( pOld!=pWC->aStatic ){
121272 pWC->nSlot = ArraySize(pWC->aStatic);
121273 pWC->a = pWC->aStatic;
121294 if( pWC->a!=pWC->aStatic ){
134872 void *aStatic[16]; /* Starter space for aArg[]. No malloc required */
134874 aArg = aStatic;
134895 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) );
134896 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn );
134897 if( (!aDyn && nArg==(int)ArraySize(aStatic))
170104 Fts5PoslistReader aStatic[4];
170105 Fts5PoslistReader *aIter = aStatic;
170129 if( aIter!=aStatic ) sqlite3_free(aIter);
170173 if( aIter!=aStatic ) sqlite3_free(aIter);
170196 Fts5PoslistReader aStatic[4];
170197 Fts5PoslistReader *aIter = aStatic;
170205 if( pPhrase->nTerm>(sizeof(aStatic) / sizeof(aStatic[0])) ){
170264 if( aIter!=aStatic ) sqlite3_free(aIter);
170329 Fts5NearTrimmer aStatic[4];
170330 Fts5NearTrimmer *a = aStatic;
170341 if( pNear->nPhrase>(sizeof(aStatic) / sizeof(aStatic[0])) ){
170345 memset(aStatic, 0, sizeof(aStatic));
170413 if( a!=aStatic ) sqlite3_free(a);