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

/freebsd-10-stable/sys/boot/ficl/
H A Dstack.c75 FICL_STACK *pStack = pVM->pStack;
94 FICL_STACK *fStack = pVM->fStack;
114 FICL_STACK *stackCreate(unsigned nCells)
116 size_t size = sizeof (FICL_STACK) + nCells * sizeof (CELL);
117 FICL_STACK *pStack = ficlMalloc(size);
136 void stackDelete(FICL_STACK *pStack)
149 int stackDepth(FICL_STACK *pStack)
159 void stackDrop(FICL_STACK *pStack, int n)
174 CELL stackFetch(FICL_STACK *pStack, int n)
179 void stackStore(FICL_STACK *pStac
[all...]
H A Dmath64.h58 void i64Push(FICL_STACK *pStack, DPINT i64);
59 DPINT i64Pop(FICL_STACK *pStack);
60 void u64Push(FICL_STACK *pStack, DPUNS u64);
61 DPUNS u64Pop(FICL_STACK *pStack);
H A Dficl.h365 } FICL_STACK; typedef in typeref:struct:_ficlStack
370 FICL_STACK *stackCreate (unsigned nCells);
371 void stackDelete (FICL_STACK *pStack);
372 int stackDepth (FICL_STACK *pStack);
373 void stackDrop (FICL_STACK *pStack, int n);
374 CELL stackFetch (FICL_STACK *pStack, int n);
375 CELL stackGetTop (FICL_STACK *pStack);
376 void stackLink (FICL_STACK *pStack, int nCells);
377 void stackPick (FICL_STACK *pStack, int n);
378 CELL stackPop (FICL_STACK *pStac
[all...]
H A Dmath64.c216 void i64Push(FICL_STACK *pStack, DPINT i64)
223 void u64Push(FICL_STACK *pStack, DPUNS u64)
237 DPINT i64Pop(FICL_STACK *pStack)
245 DPUNS u64Pop(FICL_STACK *pStack)
H A Dtools.c625 FICL_STACK *pStk = pVM->pStack;
649 FICL_STACK *pStk = pVM->rStack;
H A Dvm.c199 FICL_STACK *pStack = pVM->pStack;
H A Dwords.c4567 FICL_STACK pStack;
4568 FICL_STACK rStack;
4598 memcpy((void*)&pStack, (void*)pVM->pStack, sizeof(FICL_STACK));
4599 memcpy((void*)&rStack, (void*)pVM->rStack, sizeof(FICL_STACK));
4641 memcpy((void*)pVM->pStack, (void*)&pStack, sizeof(FICL_STACK));
4642 memcpy((void*)pVM->rStack, (void*)&rStack, sizeof(FICL_STACK));

Completed in 122 milliseconds