Lines Matching defs:apLeaf
187118 Fts3Expr **apLeaf;
187119 apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth);
187120 if( 0==apLeaf ){
187123 memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth);
187152 if( apLeaf[iLvl]==0 ){
187153 apLeaf[iLvl] = p;
187157 pFree->pLeft = apLeaf[iLvl];
187165 apLeaf[iLvl] = 0;
187199 if( apLeaf[i] ){
187201 p = apLeaf[i];
187206 pFree->pLeft = apLeaf[i];
187218 /* An error occurred. Delete the contents of the apLeaf[] array
187223 sqlite3Fts3ExprFree(apLeaf[i]);
187232 sqlite3_free( apLeaf );