Home | History | Annotate | Download | only in dist

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 */
74372 if( sqlite3ExprCheckHeight(pParse, pExpr->nHeight+pNC->pParse->nHeight) ){
74375 pParse->nHeight += pExpr->nHeight;
74386 pNC->pParse->nHeight -= pExpr->nHeight;
74690 ** Check that argument nHeight is less than or equal to the maximum
74694 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
74697 if( nHeight>mxHeight ){
74717 if( p->nHeight>*pnHeight ){
74718 *pnHeight = p->nHeight;
74744 ** Set the Expr.nHeight variable in the structure passed as an
74751 int nHeight = 0;
74752 heightOfExpr(p->pLeft, &nHeight);
74753 heightOfExpr(p->pRight, &nHeight);
74755 heightOfSelect(p->x.pSelect, &nHeight);
74757 heightOfExprList(p->x.pList, &nHeight);
74759 p->nHeight = nHeight + 1;
74763 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
74769 sqlite3ExprCheckHeight(pParse, p->nHeight);
74777 int nHeight = 0;
74778 heightOfSelect(p, &nHeight);
74779 return nHeight;
74844 pNew->nHeight = 1;
74917 sqlite3ExprCheckHeight(pParse, p->nHeight);
98375 /* Increment Parse.nHeight by the height of the largest expression
98378 ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit
98382 pParse->nHeight += sqlite3SelectExprHeight(p);
98425 pParse->nHeight -= sqlite3SelectExprHeight(p);