Home | History | Annotate | Download | only in orig

Lines Matching defs:nHeight

10585   int nHeight;           /* Height of the tree headed by this node */
11150 int nHeight; /* Expression tree height of current sub-select */
74336 if( sqlite3ExprCheckHeight(pParse, pExpr->nHeight+pNC->pParse->nHeight) ){
74339 pParse->nHeight += pExpr->nHeight;
74350 pNC->pParse->nHeight -= pExpr->nHeight;
74654 ** Check that argument nHeight is less than or equal to the maximum
74658 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
74661 if( nHeight>mxHeight ){
74681 if( p->nHeight>*pnHeight ){
74682 *pnHeight = p->nHeight;
74708 ** Set the Expr.nHeight variable in the structure passed as an
74715 int nHeight = 0;
74716 heightOfExpr(p->pLeft, &nHeight);
74717 heightOfExpr(p->pRight, &nHeight);
74719 heightOfSelect(p->x.pSelect, &nHeight);
74721 heightOfExprList(p->x.pList, &nHeight);
74723 p->nHeight = nHeight + 1;
74727 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
74733 sqlite3ExprCheckHeight(pParse, p->nHeight);
74741 int nHeight = 0;
74742 heightOfSelect(p, &nHeight);
74743 return nHeight;
74808 pNew->nHeight = 1;
74881 sqlite3ExprCheckHeight(pParse, p->nHeight);
98339 /* Increment Parse.nHeight by the height of the largest expression
98342 ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit
98346 pParse->nHeight += sqlite3SelectExprHeight(p);
98389 pParse->nHeight -= sqlite3SelectExprHeight(p);