Home
last modified time | relevance | path

Searched refs:bc_num_divmod (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/bc/include/
H A Dnum.h641 void bc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d, size_t scale);
/freebsd-13.1/contrib/bc/src/
H A Dnum.c3298 bc_num_divmod(&frac, &vm.max, &temp, &temp2, 0); in bc_num_rng()
3314 bc_num_divmod(&intn, &vm.max, &temp, &temp2, 0); in bc_num_rng()
3713 void bc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d, size_t scale) { in bc_num_divmod() function
3834 bc_num_divmod(&exp, &two, &exp, &temp, 0); in bc_num_modexp()
H A Dlibrary.c758 bc_num_divmod(aptr, bptr, &cnum, &dnum, ctxt->scale); in bcl_divmod()
H A Dprogram.c1959 bc_num_divmod(n1, n2, &res2->d.n, &res->d.n, BC_PROG_SCALE(p)); in bc_program_divmod()