Home | History | Annotate | Download | only in orig

Lines Matching defs:nHeight

16266   int nHeight;           /* Height of the tree headed by this node */
16927 int nHeight; /* Expression tree height of current sub-select */
92589 w.pParse->nHeight += pExpr->nHeight;
92590 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
92596 w.pParse->nHeight -= pExpr->nHeight;
93308 ** Check that argument nHeight is less than or equal to the maximum
93312 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
93315 if( nHeight>mxHeight ){
93335 if( p->nHeight>*pnHeight ){
93336 *pnHeight = p->nHeight;
93361 ** Set the Expr.nHeight variable in the structure passed as an
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;
93384 ** Set the Expr.nHeight variable using the exprSetHeight() function. If
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);
124010 /* Increment Parse.nHeight by the height of the largest expression
124013 ** (SQLITE_MAX_EXPR_DEPTH-Parse.nHeight) height. This is a bit
124017 pParse->nHeight += sqlite3SelectExprHeight(p);
124110 pParse->nHeight -= sqlite3SelectExprHeight(p);
138240 p->nHeight = 1;
163135 int nHeight = (int)aRoot[0];
163144 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
163148 pNode = &pWriter->aNodeWriter[nHeight];
163149 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
163156 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){