Searched refs:nSlot (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dwhere.c65 ** There are nSlot spaces left in this array. This routine attempts to
69 static int exprSplit(int nSlot, ExprInfo *aSlot, Expr *pExpr){ argument
71 if( pExpr==0 || nSlot<1 ) return 0;
72 if( nSlot==1 || pExpr->op!=TK_AND ){
78 cnt = 1 + exprSplit(nSlot-1, &aSlot[1], pExpr->pRight);
80 cnt = exprSplit(nSlot, aSlot, pExpr->pLeft);
81 cnt += exprSplit(nSlot-cnt, &aSlot[cnt], pExpr->pRight);

Completed in 66 milliseconds