Lines Matching refs:nHeight
18338 int nHeight; /* Height of the tree headed by this node */
19192 int nHeight; /* Expression tree height of current sub-select */
105664 w.pParse->nHeight += pExpr->nHeight;
105665 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
105671 w.pParse->nHeight -= pExpr->nHeight;
105706 w.pParse->nHeight += pExpr->nHeight;
105707 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
105713 w.pParse->nHeight -= pExpr->nHeight;
106518 ** Check that argument nHeight is less than or equal to the maximum
106522 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
106525 if( nHeight>mxHeight ){
106545 if( p->nHeight>*pnHeight ){
106546 *pnHeight = p->nHeight;
106571 ** Set the Expr.nHeight variable in the structure passed as an
106581 int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
106582 if( NEVER(p->pRight) && p->pRight->nHeight>nHeight ){
106583 nHeight = p->pRight->nHeight;
106586 heightOfSelect(p->x.pSelect, &nHeight);
106588 heightOfExprList(p->x.pList, &nHeight);
106591 p->nHeight = nHeight + 1;
106595 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
106605 sqlite3ExprCheckHeight(pParse, p->nHeight);
106613 int nHeight = 0;
106614 heightOfSelect(p, &nHeight);
106615 return nHeight;
106689 pNew->nHeight = 1;
106733 pRoot->nHeight = pRight->nHeight+1;
106735 pRoot->nHeight = 1;
106742 if( pLeft->nHeight>=pRoot->nHeight ){
106743 pRoot->nHeight = pLeft->nHeight+1;
106770 sqlite3ExprCheckHeight(pParse, p->nHeight);
145236 /* Increment Parse.nHeight by the height of the largest expression
145239 ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit
145243 pParse->nHeight += sqlite3SelectExprHeight(p);
145363 pParse->nHeight -= sqlite3SelectExprHeight(p);
166411 p->nHeight = 1;
194205 int nHeight = (int)aRoot[0];
194207 if( nHeight<1 || nHeight>=FTS_MAX_APPENDABLE_HEIGHT ){
194218 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
194222 pNode = &pWriter->aNodeWriter[nHeight];
194223 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
194233 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){