Lines Matching refs:aStatic

26406   static sqlite3_debug_mutex aStatic[SQLITE_MUTEX_STATIC_VFS3 - 1];
26420 if( id-2<0 || id-2>=ArraySize(aStatic) ){
26425 pNew = &aStatic[id-2];
143643 WhereTerm aStatic[1]; /* Initial static space for a[] */
143645 WhereTerm aStatic[8]; /* Initial static space for a[] */
146480 if( pOld!=pWC->aStatic ){
147061 memset(pOrWc->aStatic, 0, sizeof(pOrWc->aStatic));
147088 memset(pAndWC->aStatic, 0, sizeof(pAndWC->aStatic));
148167 pWC->nSlot = ArraySize(pWC->aStatic);
148168 pWC->a = pWC->aStatic;
148190 if( pWC->a!=pWC->aStatic ){
168964 void *aStatic[16]; /* Starter space for aArg[]. No malloc required */
168966 aArg = aStatic;
168987 assert( aArg==aDyn || (aDyn==0 && aArg==aStatic) );
168988 assert( nArg<=(int)ArraySize(aStatic) || aArg==aDyn );
168989 if( (!aDyn && nArg==(int)ArraySize(aStatic))
169001 ** aStatic[] array allocated on the stack and the attempt to
216653 Fts5PoslistReader aStatic[4];
216654 Fts5PoslistReader *aIter = aStatic;
216674 if( aIter!=aStatic ) sqlite3_free(aIter);
216714 if( aIter!=aStatic ) sqlite3_free(aIter);
216736 Fts5PoslistReader aStatic[4];
216737 Fts5PoslistReader *aIter = aStatic;
216744 /* If the aStatic[] array is not large enough, allocate a large array
216746 if( pPhrase->nTerm>ArraySize(aStatic) ){
216810 if( aIter!=aStatic ) sqlite3_free(aIter);
216869 Fts5NearTrimmer aStatic[4];
216870 Fts5NearTrimmer *a = aStatic;
216879 /* If the aStatic[] array is not large enough, allocate a large array
216881 if( pNear->nPhrase>ArraySize(aStatic) ){
216885 memset(aStatic, 0, sizeof(aStatic));
216953 if( a!=aStatic ) sqlite3_free(a);