Lines Matching refs:nHeight
15180 int nHeight; /* Height of the tree headed by this node */ member
15850 int nHeight; /* Expression tree height of current sub-select */ member
90990 if( sqlite3ExprCheckHeight(pParse, pExpr->nHeight+pNC->pParse->nHeight) ){
90993 pParse->nHeight += pExpr->nHeight;
91007 pNC->pParse->nHeight -= pExpr->nHeight;
91695 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
91698 if( nHeight>mxHeight ){
91718 if( p->nHeight>*pnHeight ){
91719 *pnHeight = p->nHeight;
91755 int nHeight = 0;
91756 heightOfExpr(p->pLeft, &nHeight);
91757 heightOfExpr(p->pRight, &nHeight);
91759 heightOfSelect(p->x.pSelect, &nHeight);
91761 heightOfExprList(p->x.pList, &nHeight);
91764 p->nHeight = nHeight + 1;
91778 sqlite3ExprCheckHeight(pParse, p->nHeight);
91786 int nHeight = 0;
91787 heightOfSelect(p, &nHeight);
91788 return nHeight;
91862 pNew->nHeight = 1;
91939 sqlite3ExprCheckHeight(pParse, p->nHeight);
121882 pParse->nHeight += sqlite3SelectExprHeight(p);
121975 pParse->nHeight -= sqlite3SelectExprHeight(p);
135724 p->nHeight = 1;
160307 int nHeight = (int)aRoot[0];
160316 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
160320 pNode = &pWriter->aNodeWriter[nHeight];
160321 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
160328 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){