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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dwhere.c64 ** aSlot[] is an array of subexpressions structures.
66 ** split pExpr into subexpressions and fills aSlot[] with those subexpressions.
69 static int exprSplit(int nSlot, ExprInfo *aSlot, Expr *pExpr){ argument
73 aSlot[0].p = pExpr;
77 aSlot[0].p = pExpr->pLeft;
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 57 milliseconds