Home
last modified time | relevance | path

Searched refs:nCells (Results 1 – 6 of 6) sorted by relevance

/freebsd-10-stable/sys/boot/ficl/
Dstack.c76 int nFree = pStack->base + pStack->nCells - pStack->sp; in vmCheckStack()
95 int nFree = fStack->base + fStack->nCells - fStack->sp; in vmCheckFStack()
114 FICL_STACK *stackCreate(unsigned nCells) in stackCreate() argument
116 size_t size = sizeof (FICL_STACK) + nCells * sizeof (CELL); in stackCreate()
120 assert (nCells != 0); in stackCreate()
124 pStack->nCells = nCells; in stackCreate()
206 void stackLink(FICL_STACK *pStack, int nCells) in stackLink() argument
210 pStack->sp += nCells; in stackLink()
Ddict.c162 int dictAllotCells(FICL_DICT *pDict, int nCells) in dictAllotCells() argument
165 if (nCells > 0) in dictAllotCells()
167 if (nCells <= dictCellsAvail(pDict)) in dictAllotCells()
168 pDict->here += nCells; in dictAllotCells()
174 nCells = -nCells; in dictAllotCells()
175 if (nCells <= dictCellsUsed(pDict)) in dictAllotCells()
176 pDict->here -= nCells; in dictAllotCells()
181 pDict->here += nCells; in dictAllotCells()
380 FICL_DICT *dictCreate(unsigned nCells) in dictCreate() argument
382 return dictCreateHashed(nCells, 1); in dictCreate()
[all …]
Dficl.h361 FICL_UNS nCells; /* size of the stack */ member
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);
/freebsd-10-stable/sys/boot/ficl/softwords/
Dforml.fr9 c-4byte obj: .nCells
Dficlclass.fr74 c-4byte obj: .nCells
Doo.fr229 : chars: \ ( offset nCells "name" -- offset' ) Create n char member.
232 : char: \ ( offset nCells "name" -- offset' ) Create 1 char member.
235 : cells: ( offset nCells "name" -- offset' )
239 : cell: ( offset nCells "name" -- offset' )