Lines Matching defs:nHeight

19004   int nHeight;           /* Height of the tree headed by this node */
19880 int nHeight; /* Expression tree height of current sub-select */
108858 w.pParse->nHeight += pExpr->nHeight;
108859 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
108866 w.pParse->nHeight -= pExpr->nHeight;
108904 w.pParse->nHeight += pExpr->nHeight;
108905 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
108911 w.pParse->nHeight -= pExpr->nHeight;
109793 ** Check that argument nHeight is less than or equal to the maximum
109797 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
109800 if( nHeight>mxHeight ){
109820 if( p->nHeight>*pnHeight ){
109821 *pnHeight = p->nHeight;
109846 ** Set the Expr.nHeight variable in the structure passed as an
109856 int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
109857 if( NEVER(p->pRight) && p->pRight->nHeight>nHeight ){
109858 nHeight = p->pRight->nHeight;
109861 heightOfSelect(p->x.pSelect, &nHeight);
109863 heightOfExprList(p->x.pList, &nHeight);
109866 p->nHeight = nHeight + 1;
109870 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
109880 sqlite3ExprCheckHeight(pParse, p->nHeight);
109888 int nHeight = 0;
109889 heightOfSelect(p, &nHeight);
109890 return nHeight;
109974 pNew->nHeight = 1;
110018 pRoot->nHeight = pRight->nHeight+1;
110020 pRoot->nHeight = 1;
110027 if( pLeft->nHeight>=pRoot->nHeight ){
110028 pRoot->nHeight = pLeft->nHeight+1;
110055 sqlite3ExprCheckHeight(pParse, p->nHeight);
150572 /* Increment Parse.nHeight by the height of the largest expression
150575 ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit
150579 pParse->nHeight += sqlite3SelectExprHeight(p);
150704 pParse->nHeight -= sqlite3SelectExprHeight(p);
172640 p->nHeight = 1;
200800 int nHeight = (int)aRoot[0];
200802 if( nHeight<1 || nHeight>=FTS_MAX_APPENDABLE_HEIGHT ){
200813 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
200817 pNode = &pWriter->aNodeWriter[nHeight];
200818 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
200828 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){