Home
last modified time | relevance | path

Searched refs:FICL_STACK (Results 1 – 7 of 7) sorted by relevance

/freebsd/stand/ficl/
H A Dstack.c74 FICL_STACK *pStack = pVM->pStack; in vmCheckStack()
93 FICL_STACK *fStack = pVM->fStack; in vmCheckFStack()
113 FICL_STACK *stackCreate(unsigned nCells) in stackCreate()
115 size_t size = sizeof (FICL_STACK) + nCells * sizeof (CELL); in stackCreate()
116 FICL_STACK *pStack = ficlMalloc(size); in stackCreate()
135 void stackDelete(FICL_STACK *pStack) in stackDelete()
148 int stackDepth(FICL_STACK *pStack) in stackDepth()
158 void stackDrop(FICL_STACK *pStack, int n) in stackDrop()
173 CELL stackFetch(FICL_STACK *pStack, int n) in stackFetch()
178 void stackStore(FICL_STACK *pStack, int n, CELL c) in stackStore()
[all …]
H A Dficl.h364 } FICL_STACK; typedef
369 FICL_STACK *stackCreate (unsigned nCells);
370 void stackDelete (FICL_STACK *pStack);
371 int stackDepth (FICL_STACK *pStack);
372 void stackDrop (FICL_STACK *pStack, int n);
373 CELL stackFetch (FICL_STACK *pStack, int n);
374 CELL stackGetTop (FICL_STACK *pStack);
375 void stackLink (FICL_STACK *pStack, int nCells);
376 void stackPick (FICL_STACK *pStack, int n);
377 CELL stackPop (FICL_STACK *pStack);
[all …]
H A Dmath64.h57 void i64Push(FICL_STACK *pStack, DPINT i64);
58 DPINT i64Pop(FICL_STACK *pStack);
59 void u64Push(FICL_STACK *pStack, DPUNS u64);
60 DPUNS u64Pop(FICL_STACK *pStack);
H A Dmath64.c215 void i64Push(FICL_STACK *pStack, DPINT i64) in i64Push()
222 void u64Push(FICL_STACK *pStack, DPUNS u64) in u64Push()
236 DPINT i64Pop(FICL_STACK *pStack) in i64Pop()
244 DPUNS u64Pop(FICL_STACK *pStack) in u64Pop()
H A Dtools.c624 FICL_STACK *pStk = pVM->pStack; in displayPStack()
648 FICL_STACK *pStk = pVM->rStack; in displayRStack()
H A Dvm.c198 FICL_STACK *pStack = pVM->pStack;
H A Dwords.c4578 FICL_STACK pStack; in ficlCatch()
4579 FICL_STACK rStack; in ficlCatch()
4609 memcpy((void*)&pStack, (void*)pVM->pStack, sizeof(FICL_STACK)); in ficlCatch()
4610 memcpy((void*)&rStack, (void*)pVM->rStack, sizeof(FICL_STACK)); in ficlCatch()
4652 memcpy((void*)pVM->pStack, (void*)&pStack, sizeof(FICL_STACK)); in ficlCatch()
4653 memcpy((void*)pVM->rStack, (void*)&rStack, sizeof(FICL_STACK)); in ficlCatch()