Home
last modified time | relevance | path

Searched refs:apLeaf (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c201220 Fts3Expr **apLeaf; local
201221 apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth);
201222 if( 0==apLeaf ){
201225 memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth);
201254 if( apLeaf[iLvl]==0 ){
201255 apLeaf[iLvl] = p;
201259 pFree->pLeft = apLeaf[iLvl];
201267 apLeaf[iLvl] = 0;
201301 if( apLeaf[i] ){
201303 p = apLeaf[i];
[all …]