Lines Matching refs:nLists
63 if (pDict->nLists < 1) in definitions()
68 pDict->pCompile = pDict->pSearch[pDict->nLists-1]; in definitions()
113 int nLists = pDict->nLists; in getOrder() local
117 for (i = 0; i < nLists; i++) in getOrder()
122 stackPushUNS(pVM->pStack, nLists); in getOrder()
195 int nLists = stackPopINT(pVM->pStack); in setOrder() local
198 if (nLists > FICL_DEFAULT_VOCS) in setOrder()
205 if (nLists >= 0) in setOrder()
207 dp->nLists = nLists; in setOrder()
208 for (i = nLists-1; i >= 0; --i) in setOrder()
262 int nLists; in searchPop() local
265 nLists = dp->nLists; in searchPop()
266 if (nLists == 0) in searchPop()
270 stackPushPtr(pVM->pStack, dp->pSearch[--dp->nLists]); in searchPop()
286 if (dp->nLists > FICL_DEFAULT_VOCS) in searchPush()
290 dp->pSearch[dp->nLists++] = stackPopPtr(pVM->pStack); in searchPush()