Lines Matching defs:pnHeight
106540 ** to by pnHeight, the second parameter, then set *pnHeight to that
106543 static void heightOfExpr(const Expr *p, int *pnHeight){
106545 if( p->nHeight>*pnHeight ){
106546 *pnHeight = p->nHeight;
106550 static void heightOfExprList(const ExprList *p, int *pnHeight){
106554 heightOfExpr(p->a[i].pExpr, pnHeight);
106558 static void heightOfSelect(const Select *pSelect, int *pnHeight){
106561 heightOfExpr(p->pWhere, pnHeight);
106562 heightOfExpr(p->pHaving, pnHeight);
106563 heightOfExpr(p->pLimit, pnHeight);
106564 heightOfExprList(p->pEList, pnHeight);
106565 heightOfExprList(p->pGroupBy, pnHeight);
106566 heightOfExprList(p->pOrderBy, pnHeight);