Home
last modified time | relevance | path

Searched refs:BC_PROG_STACK (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/bc/src/
H A Dprogram.c486 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 2))) in bc_program_binPrep()
493 assert(BC_PROG_STACK(&p->results, idx + 2)); in bc_program_binPrep()
601 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 1))) in bc_program_prep()
608 assert(BC_PROG_STACK(&p->results, idx + 1)); in bc_program_prep()
974 if (BC_ERR(!BC_PROG_STACK(&p->results, idx + 1))) in bc_program_print()
981 assert(BC_PROG_STACK(&p->results, idx + 1)); in bc_program_print()
1199 assert(BC_PROG_STACK(&p->results, 1 + !push)); in bc_program_assignStr()
1234 if (BC_ERR(!BC_PROG_STACK(&p->results, 1))) bc_err(BC_ERR_EXEC_STACK); in bc_program_copyToVar()
1238 assert(BC_PROG_STACK(&p->results, 1)); in bc_program_copyToVar()
1630 if (BC_ERR(!BC_PROG_STACK(v, 2 - copy))) in bc_program_pushVar()
[all …]
/freebsd/contrib/bc/include/
H A Dprogram.h164 #define BC_PROG_STACK(s, n) ((s)->len >= ((size_t) (n))) macro