Lines Matching defs:pStack
74 FICL_STACK *pStack = pVM->pStack; in vmCheckStack() local
116 FICL_STACK *pStack = ficlMalloc(size); in stackCreate() local
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()
190 CELL stackGetTop(FICL_STACK *pStack) in stackGetTop()
205 void stackLink(FICL_STACK *pStack, int nCells) in stackLink()
221 void stackUnlink(FICL_STACK *pStack) in stackUnlink()
234 void stackPick(FICL_STACK *pStack, int n) in stackPick()
246 CELL stackPop(FICL_STACK *pStack) in stackPop()
251 void *stackPopPtr(FICL_STACK *pStack) in stackPopPtr()
256 FICL_UNS stackPopUNS(FICL_STACK *pStack) in stackPopUNS()
261 FICL_INT stackPopINT(FICL_STACK *pStack) in stackPopINT()
267 float stackPopFloat(FICL_STACK *pStack) in stackPopFloat()
278 void stackPush(FICL_STACK *pStack, CELL c) in stackPush()
283 void stackPushPtr(FICL_STACK *pStack, void *ptr) in stackPushPtr()
288 void stackPushUNS(FICL_STACK *pStack, FICL_UNS u) in stackPushUNS()
293 void stackPushINT(FICL_STACK *pStack, FICL_INT i) in stackPushINT()
299 void stackPushFloat(FICL_STACK *pStack, FICL_FLOAT f) in stackPushFloat()
310 void stackReset(FICL_STACK *pStack) in stackReset()
325 void stackRoll(FICL_STACK *pStack, int n) in stackRoll()
365 void stackSetTop(FICL_STACK *pStack, CELL c) in stackSetTop()