Lines Matching defs:pop
223 /// Returns true if the calculator should pop after printing.
224 #define BC_PROGRAM_POP(pop) (pop)
228 /// Returns true if the calculator should pop after printing.
229 #define BC_PROGRAM_POP(pop) (BC_IS_BC || (pop))
234 #define bc_program_pushVar(p, code, bgn, pop, copy) \
235 bc_program_pushVar_impl(p, code, bgn, pop, copy)
239 // This define disappears pop and copy because for bc, 'pop' and 'copy' are
241 #define bc_program_pushVar(p, code, bgn, pop, copy) \
244 /// Returns true if the calculator should pop after printing.
245 #define BC_PROGRAM_POP(pop) (BC_IS_BC)