Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c201182 static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){ argument
201185 if( nMaxDepth<0 ){
201188 rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1);
201190 rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1);
201208 static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){ argument
201214 if( nMaxDepth==0 ){
201221 apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth);
201225 memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth);
201250 rc = fts3ExprBalance(&p, nMaxDepth-1);
201253 for(iLvl=0; p && iLvl<nMaxDepth; iLvl++){
[all …]