Lines Matching refs:nHeight

19421   int nHeight;           /* Height of the tree headed by this node */  member
20350 int nHeight; /* Expression tree height of current sub-select */ member
110190 w.pParse->nHeight += pExpr->nHeight;
110191 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
110198 w.pParse->nHeight -= pExpr->nHeight;
110236 w.pParse->nHeight += pExpr->nHeight;
110237 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
110243 w.pParse->nHeight -= pExpr->nHeight;
111137 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
111140 if( nHeight>mxHeight ){
111160 if( p->nHeight>*pnHeight ){
111161 *pnHeight = p->nHeight;
111196 int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
111197 if( NEVER(p->pRight) && p->pRight->nHeight>nHeight ){
111198 nHeight = p->pRight->nHeight;
111201 heightOfSelect(p->x.pSelect, &nHeight);
111203 heightOfExprList(p->x.pList, &nHeight);
111206 p->nHeight = nHeight + 1;
111220 sqlite3ExprCheckHeight(pParse, p->nHeight);
111228 int nHeight = 0;
111229 heightOfSelect(p, &nHeight);
111230 return nHeight;
111314 pNew->nHeight = 1;
111358 pRoot->nHeight = pRight->nHeight+1;
111360 pRoot->nHeight = 1;
111367 if( pLeft->nHeight>=pRoot->nHeight ){
111368 pRoot->nHeight = pLeft->nHeight+1;
111395 sqlite3ExprCheckHeight(pParse, p->nHeight);
152683 pParse->nHeight += sqlite3SelectExprHeight(p);
152816 pParse->nHeight -= sqlite3SelectExprHeight(p);
175469 p->nHeight = 1;
203767 int nHeight = (int)aRoot[0];
203769 if( nHeight<1 || nHeight>=FTS_MAX_APPENDABLE_HEIGHT ){
203780 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
203784 pNode = &pWriter->aNodeWriter[nHeight];
203785 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
203795 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){