Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c201496 static int fts3ExprCheckDepth(Fts3Expr *p, int nMaxDepth){ argument
201499 if( nMaxDepth<0 ){
201502 rc = fts3ExprCheckDepth(p->pLeft, nMaxDepth-1);
201504 rc = fts3ExprCheckDepth(p->pRight, nMaxDepth-1);
201522 static int fts3ExprBalance(Fts3Expr **pp, int nMaxDepth){ argument
201528 if( nMaxDepth==0 ){
201535 apLeaf = (Fts3Expr **)sqlite3_malloc64(sizeof(Fts3Expr *) * nMaxDepth);
201539 memset(apLeaf, 0, sizeof(Fts3Expr *) * nMaxDepth);
201564 rc = fts3ExprBalance(&p, nMaxDepth-1);
201567 for(iLvl=0; p && iLvl<nMaxDepth; iLvl++){
[all …]