Home
last modified time | relevance | path

Searched refs:popCells (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/common/ficl/
H A Dstack.c69 ficlStackCheck(ficlStack *stack, int popCells, int pushCells) in ficlStackCheck() argument
74 if (popCells > STKDEPTH(stack)) in ficlStackCheck()
78 if (nFree < pushCells - popCells) in ficlStackCheck()
83 FICL_IGNORE(popCells); in ficlStackCheck()
H A Dficl.h914 ficlStackCheck(ficlStack *stack, int popCells, int pushCells);
915 #define FICL_STACK_CHECK(stack, popCells, pushCells) \ argument
916 ficlStackCheck(stack, popCells, pushCells)
918 #define FICL_STACK_CHECK(stack, popCells, pushCells) argument
H A Dvm.c184 ficlStackCheckNospill(ficlStack *stack, ficlCell *top, int popCells, in ficlStackCheckNospill() argument
195 ficlStackCheck(stack, popCells, pushCells); in ficlStackCheckNospill()