Home
last modified time | relevance | path

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

/freebsd/contrib/bc/src/
H A Dprogram.c712 bc_num_init(&res->d.n, bc_program_opReqs[idx](n1, n2, BC_PROG_SCALE(p))); in bc_program_op()
720 bc_program_ops[idx](n1, n2, &res->d.n, BC_PROG_SCALE(p)); in bc_program_op()
1538 BcBigDig scale = BC_PROG_SCALE(p); in bc_program_assign()
2008 if (inst == BC_INST_SQRT) bc_num_sqrt(num, &res->d.n, BC_PROG_SCALE(p)); in bc_program_builtin()
2153 req = bc_num_mulReq(n1, n2, BC_PROG_SCALE(p)); in bc_program_divmod()
2164 bc_num_divmod(n1, n2, &res2->d.n, &res->d.n, BC_PROG_SCALE(p)); in bc_program_divmod()
/freebsd/contrib/bc/include/
H A Dprogram.h199 #define BC_PROG_SCALE(p) ((p)->globals[BC_PROG_GLOBALS_SCALE]) macro