• Home
  • Raw
  • Download

Lines Matching refs:nHeight

18338   int nHeight;           /* Height of the tree headed by this node */  member
19192 int nHeight; /* Expression tree height of current sub-select */ member
105451 w.pParse->nHeight += pExpr->nHeight;
105452 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
105458 w.pParse->nHeight -= pExpr->nHeight;
105493 w.pParse->nHeight += pExpr->nHeight;
105494 if( sqlite3ExprCheckHeight(w.pParse, w.pParse->nHeight) ){
105500 w.pParse->nHeight -= pExpr->nHeight;
106309 SQLITE_PRIVATE int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
106312 if( nHeight>mxHeight ){
106332 if( p->nHeight>*pnHeight ){
106333 *pnHeight = p->nHeight;
106368 int nHeight = p->pLeft ? p->pLeft->nHeight : 0;
106369 if( NEVER(p->pRight) && p->pRight->nHeight>nHeight ){
106370 nHeight = p->pRight->nHeight;
106373 heightOfSelect(p->x.pSelect, &nHeight);
106375 heightOfExprList(p->x.pList, &nHeight);
106378 p->nHeight = nHeight + 1;
106392 sqlite3ExprCheckHeight(pParse, p->nHeight);
106400 int nHeight = 0;
106401 heightOfSelect(p, &nHeight);
106402 return nHeight;
106476 pNew->nHeight = 1;
106520 pRoot->nHeight = pRight->nHeight+1;
106522 pRoot->nHeight = 1;
106529 if( pLeft->nHeight>=pRoot->nHeight ){
106530 pRoot->nHeight = pLeft->nHeight+1;
106557 sqlite3ExprCheckHeight(pParse, p->nHeight);
145030 pParse->nHeight += sqlite3SelectExprHeight(p);
145150 pParse->nHeight -= sqlite3SelectExprHeight(p);
166198 p->nHeight = 1;
193992 int nHeight = (int)aRoot[0];
193994 if( nHeight<1 || nHeight>=FTS_MAX_APPENDABLE_HEIGHT ){
194005 for(i=nHeight+1; i<FTS_MAX_APPENDABLE_HEIGHT; i++){
194009 pNode = &pWriter->aNodeWriter[nHeight];
194010 pNode->iBlock = pWriter->iStart + pWriter->nLeafEst*nHeight;
194020 for(i=nHeight; i>=0 && rc==SQLITE_OK; i--){