Lines Matching defs:pStack
75 FICL_STACK *pStack = pVM->pStack; in vmCheckStack() local
117 FICL_STACK *pStack = ficlMalloc(size); in stackCreate() local
136 void stackDelete(FICL_STACK *pStack) in stackDelete()
149 int stackDepth(FICL_STACK *pStack) in stackDepth()
159 void stackDrop(FICL_STACK *pStack, int n) in stackDrop()
174 CELL stackFetch(FICL_STACK *pStack, int n) in stackFetch()
179 void stackStore(FICL_STACK *pStack, int n, CELL c) in stackStore()
191 CELL stackGetTop(FICL_STACK *pStack) in stackGetTop()
206 void stackLink(FICL_STACK *pStack, int nCells) in stackLink()
222 void stackUnlink(FICL_STACK *pStack) in stackUnlink()
235 void stackPick(FICL_STACK *pStack, int n) in stackPick()
247 CELL stackPop(FICL_STACK *pStack) in stackPop()
252 void *stackPopPtr(FICL_STACK *pStack) in stackPopPtr()
257 FICL_UNS stackPopUNS(FICL_STACK *pStack) in stackPopUNS()
262 FICL_INT stackPopINT(FICL_STACK *pStack) in stackPopINT()
268 float stackPopFloat(FICL_STACK *pStack) in stackPopFloat()
279 void stackPush(FICL_STACK *pStack, CELL c) in stackPush()
284 void stackPushPtr(FICL_STACK *pStack, void *ptr) in stackPushPtr()
289 void stackPushUNS(FICL_STACK *pStack, FICL_UNS u) in stackPushUNS()
294 void stackPushINT(FICL_STACK *pStack, FICL_INT i) in stackPushINT()
300 void stackPushFloat(FICL_STACK *pStack, FICL_FLOAT f) in stackPushFloat()
311 void stackReset(FICL_STACK *pStack) in stackReset()
326 void stackRoll(FICL_STACK *pStack, int n) in stackRoll()
366 void stackSetTop(FICL_STACK *pStack, CELL c) in stackSetTop()