Lines Matching refs:pStack
216 void i64Push(FICL_STACK *pStack, DPINT i64) in i64Push() argument
218 stackPushINT(pStack, i64.lo); in i64Push()
219 stackPushINT(pStack, i64.hi); in i64Push()
223 void u64Push(FICL_STACK *pStack, DPUNS u64) in u64Push() argument
225 stackPushINT(pStack, u64.lo); in u64Push()
226 stackPushINT(pStack, u64.hi); in u64Push()
237 DPINT i64Pop(FICL_STACK *pStack) in i64Pop() argument
240 ret.hi = stackPopINT(pStack); in i64Pop()
241 ret.lo = stackPopINT(pStack); in i64Pop()
245 DPUNS u64Pop(FICL_STACK *pStack) in u64Pop() argument
248 ret.hi = stackPopINT(pStack); in u64Pop()
249 ret.lo = stackPopINT(pStack); in u64Pop()