Home
last modified time | relevance | path

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

/freebsd/stand/ficl/
H A Dstack.c75 int nFree = pStack->base + pStack->nCells - pStack->sp; in vmCheckStack()
94 int nFree = fStack->base + fStack->nCells - fStack->sp; in vmCheckFStack()
113 FICL_STACK *stackCreate(unsigned nCells) in stackCreate() argument
115 size_t size = sizeof (FICL_STACK) + nCells * sizeof (CELL); in stackCreate()
119 assert (nCells != 0); in stackCreate()
123 pStack->nCells = nCells; in stackCreate()
205 void stackLink(FICL_STACK *pStack, int nCells) in stackLink() argument
209 pStack->sp += nCells; in stackLink()
H A Ddict.c161 int dictAllotCells(FICL_DICT *pDict, int nCells) in dictAllotCells() argument
164 if (nCells > 0) in dictAllotCells()
166 if (nCells <= dictCellsAvail(pDict)) in dictAllotCells()
167 pDict->here += nCells; in dictAllotCells()
173 nCells = -nCells; in dictAllotCells()
174 if (nCells <= dictCellsUsed(pDict)) in dictAllotCells()
175 pDict->here -= nCells; in dictAllotCells()
180 pDict->here += nCells; in dictAllotCells()
379 FICL_DICT *dictCreate(unsigned nCells) in dictCreate() argument
381 return dictCreateHashed(nCells, 1); in dictCreate()
[all …]
H A Dficl.h360 FICL_UNS nCells; /* size of the stack */ member
369 FICL_STACK *stackCreate (unsigned nCells);
375 void stackLink (FICL_STACK *pStack, int nCells);
744 int dictAllotCells (FICL_DICT *pDict, int nCells);
761 FICL_DICT *dictCreateHashed(unsigned nCells, unsigned nHash);
/freebsd/stand/ficl/softwords/
H A Dforml.fr8 c-4byte obj: .nCells
H A Dficlclass.fr73 c-4byte obj: .nCells
H A Doo.fr228 : chars: \ ( offset nCells "name" -- offset' ) Create n char member.
231 : char: \ ( offset nCells "name" -- offset' ) Create 1 char member.
234 : cells: ( offset nCells "name" -- offset' )
238 : cell: ( offset nCells "name" -- offset' )