Searched refs:nCells (Results 1 – 6 of 6) sorted by relevance
76 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() argument116 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() argument210 pStack->sp += nCells; in stackLink()
162 int dictAllotCells(FICL_DICT *pDict, int nCells) in dictAllotCells() argument165 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() argument382 return dictCreateHashed(nCells, 1); in dictCreate()[all …]
361 FICL_UNS nCells; /* size of the stack */ member370 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);
9 c-4byte obj: .nCells
74 c-4byte obj: .nCells
229 : 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' )