Lines Matching refs:nHeight
16266 int nHeight; /* Height of the tree headed by this node */ member
16927 int nHeight; /* Expression tree height of current sub-select */ member
92605 w.pParse->nHeight += pExpr->nHeight;
92606 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
92612 w.pParse->nHeight -= pExpr->nHeight;
93328 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
93331 if( nHeight>mxHeight ){
93351 if( p->nHeight>*pnHeight ){
93352 *pnHeight = p->nHeight;
93387 int nHeight = 0;
93388 heightOfExpr(p->pLeft, &nHeight);
93389 heightOfExpr(p->pRight, &nHeight);
93391 heightOfSelect(p->x.pSelect, &nHeight);
93393 heightOfExprList(p->x.pList, &nHeight);
93396 p->nHeight = nHeight + 1;
93410 sqlite3ExprCheckHeight(pParse, p->nHeight);
93418 int nHeight = 0;
93419 heightOfSelect(p, &nHeight);
93420 return nHeight;
93494 pNew->nHeight = 1;
93571 sqlite3ExprCheckHeight(pParse, p->nHeight);
124033 pParse->nHeight += sqlite3SelectExprHeight(p);
124126 pParse->nHeight -= sqlite3SelectExprHeight(p);
138256 p->nHeight = 1;
163164 int nHeight = (int)aRoot[0];
163173 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
163177 pNode = &pWriter->aNodeWriter[nHeight];
163178 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
163185 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){