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()
118323 WhereTerm aStatic[1]; /* Initial static space for a[] */
118325 WhereTerm aStatic[8]; /* Initial static space for a[] */
120111 if( pOld!=pWC->aStatic ){
121254 pWC->nSlot = ArraySize(pWC->aStatic);
121255 pWC->a = pWC->aStatic;
121276 if( pWC->a!=pWC->aStatic ){
134854 void *aStatic[16]; /* Starter space for aArg[]. No malloc required */
134856 aArg = aStatic;
134877 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) );
134878 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn );
134879 if( (!aDyn && nArg==(int)ArraySize(aStatic))
170074 Fts5PoslistReader aStatic[4];
170075 Fts5PoslistReader *aIter = aStatic;
170099 if( aIter!=aStatic ) sqlite3_free(aIter);
170143 if( aIter!=aStatic ) sqlite3_free(aIter);
170166 Fts5PoslistReader aStatic[4];
170167 Fts5PoslistReader *aIter = aStatic;
170175 if( pPhrase->nTerm>(sizeof(aStatic) / sizeof(aStatic[0])) ){
170234 if( aIter!=aStatic ) sqlite3_free(aIter);
170299 Fts5NearTrimmer aStatic[4];
170300 Fts5NearTrimmer *a = aStatic;
170311 if( pNear->nPhrase>(sizeof(aStatic) / sizeof(aStatic[0])) ){
170315 memset(aStatic, 0, sizeof(aStatic));
170383 if( a!=aStatic ) sqlite3_free(a);