Lines Matching refs:nHeight
15110 int nHeight; /* Height of the tree headed by this node */ member
15779 int nHeight; /* Expression tree height of current sub-select */ member
90626 if( sqlite3ExprCheckHeight(pParse, pExpr->nHeight+pNC->pParse->nHeight) ){
90629 pParse->nHeight += pExpr->nHeight;
90643 pNC->pParse->nHeight -= pExpr->nHeight;
91335 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
91338 if( nHeight>mxHeight ){
91358 if( p->nHeight>*pnHeight ){
91359 *pnHeight = p->nHeight;
91395 int nHeight = 0;
91396 heightOfExpr(p->pLeft, &nHeight);
91397 heightOfExpr(p->pRight, &nHeight);
91399 heightOfSelect(p->x.pSelect, &nHeight);
91401 heightOfExprList(p->x.pList, &nHeight);
91404 p->nHeight = nHeight + 1;
91418 sqlite3ExprCheckHeight(pParse, p->nHeight);
91426 int nHeight = 0;
91427 heightOfSelect(p, &nHeight);
91428 return nHeight;
91502 pNew->nHeight = 1;
91579 sqlite3ExprCheckHeight(pParse, p->nHeight);
121267 pParse->nHeight += sqlite3SelectExprHeight(p);
121353 pParse->nHeight -= sqlite3SelectExprHeight(p);
134973 p->nHeight = 1;
159576 int nHeight = (int)aRoot[0];
159585 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
159589 pNode = &pWriter->aNodeWriter[nHeight];
159590 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
159597 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){