Searched refs:bc_num_extend (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/bc/src/ |
H A D | num.c | 619 bc_num_extend(BcNum* restrict n, size_t places) in bc_num_extend() function 663 if (n->scale < scale) bc_num_extend(n, scale - n->scale); in bc_num_retireMul() 954 bc_num_extend(n, places_rdx * BC_BASE_DIGS); in bc_num_shiftRight() 1932 bc_num_extend(&cpa, (len - cpa.len) * BC_BASE_DIGS); in bc_num_d() 1939 bc_num_extend(&cpa, b->scale); in bc_num_d() 1947 bc_num_extend(&cpa, scale); in bc_num_d() 2039 if (ts > d->scale && BC_NUM_NONZERO(d)) bc_num_extend(d, ts - d->scale); in bc_num_r() 2228 else if (val > c->scale) bc_num_extend(c, val - c->scale); in bc_num_place() 2694 if (n->scale < digs) bc_num_extend(n, digs - n->scale); in bc_num_parseBase() 4179 bc_num_extend(b, realscale); in bc_num_sqrt()
|
H A D | library.c | 774 bc_num_extend(BCL_NUM_NUM(nptr), scale - BCL_NUM_NUM(nptr)->scale); in bcl_num_setScale()
|
/freebsd/contrib/bc/include/ |
H A D | num.h | 751 bc_num_extend(BcNum* restrict n, size_t places);
|