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

/freebsd-9.3-release/sys/boot/ficl/
H A Dstack.c66 ** nCells controls the type of check: if nCells is zero,
68 ** If nCells > 0, checks to see that the stack has room to push
76 int nFree = pStack->base + pStack->nCells - pStack->sp;
95 int nFree = fStack->base + fStack->nCells - fStack->sp;
114 FICL_STACK *stackCreate(unsigned nCells) argument
116 size_t size = sizeof (FICL_STACK) + nCells * sizeof (CELL);
120 assert (nCells != 0);
124 pStack->nCells = nCells;
206 stackLink(FICL_STACK *pStack, int nCells) argument
[all...]
H A Ddict.c160 ** dictionary. If nCells < 0 , removes space from the dictionary.
162 int dictAllotCells(FICL_DICT *pDict, int nCells) argument
165 if (nCells > 0)
167 if (nCells <= dictCellsAvail(pDict))
168 pDict->here += nCells;
174 nCells = -nCells;
175 if (nCells <= dictCellsUsed(pDict))
176 pDict->here -= nCells;
181 pDict->here += nCells;
380 dictCreate(unsigned nCells) argument
386 dictCreateHashed(unsigned nCells, unsigned nHash) argument
[all...]
H A Dficl.h361 FICL_UNS nCells; /* size of the stack */ member in struct:_ficlStack
370 FICL_STACK *stackCreate (unsigned nCells);
376 void stackLink (FICL_STACK *pStack, int nCells);
745 int dictAllotCells (FICL_DICT *pDict, int nCells);
762 FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash);

Completed in 58 milliseconds