Searched refs:bc_num_extend (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/bc/src/ |
| H A D | num.c | 494 void bc_num_extend(BcNum *restrict n, size_t places) { in bc_num_extend() function 534 if (n->scale < scale) bc_num_extend(n, scale - n->scale); in bc_num_retireMul() 799 bc_num_extend(n, places_rdx * BC_BASE_DIGS); in bc_num_shiftRight() 1675 bc_num_extend(&cpa, (len - cpa.len) * BC_BASE_DIGS); in bc_num_d() 1682 bc_num_extend(&cpa, b->scale); in bc_num_d() 1689 bc_num_extend(&cpa, scale); in bc_num_d() 1769 if (ts > d->scale && BC_NUM_NONZERO(d)) bc_num_extend(d, ts - d->scale); in bc_num_r() 1931 else if (val > c->scale) bc_num_extend(c, val - c->scale); in bc_num_place() 2347 if (n->scale < digs) bc_num_extend(n, digs - n->scale); in bc_num_parseBase() 3614 bc_num_extend(b, scale); in bc_num_sqrt()
|
| H A D | library.c | 517 if (scale > nptr->scale) bc_num_extend(nptr, scale - nptr->scale); in bcl_num_setScale()
|
| /freebsd-13.1/contrib/bc/include/ |
| H A D | num.h | 716 void bc_num_extend(BcNum *restrict n, size_t places);
|