Lines Matching defs:aStatic
28042 static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1];
28056 if( id-2<0 || id-2>=ArraySize(aStatic) ){
28061 pNew = &aStatic[id-2];
151659 WhereTerm aStatic[1]; /* Initial static space for a[] */
151661 WhereTerm aStatic[8]; /* Initial static space for a[] */
155364 memset(pOrWc->aStatic, 0, sizeof(pOrWc->aStatic));
155392 memset(pAndWC->aStatic, 0, sizeof(pAndWC->aStatic));
156356 pWC->nSlot = ArraySize(pWC->aStatic);
156357 pWC->a = pWC->aStatic;
178599 void *aStatic[16]; /* Starter space for aArg[]. No malloc required */
178601 aArg = aStatic;
178622 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) );
178623 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn );
178624 if( (!aDyn && nArg==(int)ArraySize(aStatic))
178636 ** aStatic[] array allocated on the stack and the attempt to
226835 Fts5PoslistReader aStatic[4];
226836 Fts5PoslistReader *aIter = aStatic;
226856 if( aIter!=aStatic ) sqlite3_free(aIter);
226896 if( aIter!=aStatic ) sqlite3_free(aIter);
226918 Fts5PoslistReader aStatic[4];
226919 Fts5PoslistReader *aIter = aStatic;
226926 /* If the aStatic[] array is not large enough, allocate a large array
226928 if( pPhrase->nTerm>ArraySize(aStatic) ){
226992 if( aIter!=aStatic ) sqlite3_free(aIter);
227051 Fts5NearTrimmer aStatic[4];
227052 Fts5NearTrimmer *a = aStatic;
227061 /* If the aStatic[] array is not large enough, allocate a large array
227063 if( pNear->nPhrase>ArraySize(aStatic) ){
227067 memset(aStatic, 0, sizeof(aStatic));
227135 if( a!=aStatic ) sqlite3_free(a);