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
92589 w.pParse->nHeight += pExpr->nHeight;
92590 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
92596 w.pParse->nHeight -= pExpr->nHeight;
93312 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
93315 if( nHeight>mxHeight ){
93335 if( p->nHeight>*pnHeight ){
93336 *pnHeight = p->nHeight;
93371 int nHeight = 0;
93372 heightOfExpr(p->pLeft, &nHeight);
93373 heightOfExpr(p->pRight, &nHeight);
93375 heightOfSelect(p->x.pSelect, &nHeight);
93377 heightOfExprList(p->x.pList, &nHeight);
93380 p->nHeight = nHeight + 1;
93394 sqlite3ExprCheckHeight(pParse, p->nHeight);
93402 int nHeight = 0;
93403 heightOfSelect(p, &nHeight);
93404 return nHeight;
93478 pNew->nHeight = 1;
93555 sqlite3ExprCheckHeight(pParse, p->nHeight);
124017 pParse->nHeight += sqlite3SelectExprHeight(p);
124110 pParse->nHeight -= sqlite3SelectExprHeight(p);
138240 p->nHeight = 1;
163136 int nHeight = (int)aRoot[0];
163145 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
163149 pNode = &pWriter->aNodeWriter[nHeight];
163150 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
163157 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){