stand/ficl/ficl.h
372
void stackDrop (FICL_STACK *pStack, int n);
stand/ficl/ficl.h
415
#define DROP(n) stackDrop(pVM->pStack,n)
stand/ficl/ficl.h
416
#define DROPF(n) stackDrop(pVM->fStack,n)
stand/ficl/vm.c
222
stackDrop(pStack, 1);
stand/ficl/words.c
1427
stackDrop(pVM->pStack, 1);
stand/ficl/words.c
2113
stackDrop(pVM->rStack, 2);
stand/ficl/words.c
2122
stackDrop(pVM->rStack, 3);
stand/ficl/words.c
2162
stackDrop(pVM->rStack, 3); /* nuke the loop indices & "leave" addr */
stand/ficl/words.c
2197
stackDrop(pVM->rStack, 3); /* nuke the loop indices & "leave" addr */
stand/ficl/words.c
873
stackDrop(pVM->pStack, 1);
stand/ficl/words.c
883
stackDrop(pVM->pStack, 2);