Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/bc/src/
H A Dprogram.c638 bc_num_init(&res->d.n, bc_program_opReqs[idx](n1, n2, BC_PROG_SCALE(p))); in bc_program_op()
646 bc_program_ops[idx](n1, n2, &res->d.n, BC_PROG_SCALE(p)); in bc_program_op()
1349 BcBigDig scale = BC_PROG_SCALE(p); in bc_program_assign()
1841 if (inst == BC_INST_SQRT) bc_num_sqrt(num, &res->d.n, BC_PROG_SCALE(p)); in bc_program_builtin()
1948 req = bc_num_mulReq(n1, n2, BC_PROG_SCALE(p)); in bc_program_divmod()
1959 bc_num_divmod(n1, n2, &res2->d.n, &res->d.n, BC_PROG_SCALE(p)); in bc_program_divmod()
/freebsd-13.1/contrib/bc/include/
H A Dprogram.h180 #define BC_PROG_SCALE(p) ((p)->globals[BC_PROG_GLOBALS_SCALE]) macro