Lines Matching refs:nMaxDepth
173433 static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){
173436 if( nMaxDepth<0 ){
173439 rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1);
173441 rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1);
173459 static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){
173465 if( nMaxDepth==0 ){
173472 apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth);
173476 memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth);
173501 rc = fts3ExprBalance(&p, nMaxDepth-1);
173504 for(iLvl=0; p && iLvl<nMaxDepth; iLvl++){
173551 for(i=0; i<nMaxDepth; i++){
173575 for(i=0; i<nMaxDepth; i++){
173596 rc = fts3ExprBalance(&pLeft, nMaxDepth-1);
173598 rc = fts3ExprBalance(&pRight, nMaxDepth-1);