Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/bc/src/
H A Dnum.c319 assert(((BcBigDig) BC_BASE_POW) * 2 == ((BcDig) BC_BASE_POW) * 2); in bc_num_addDigits()
324 *carry = (a >= BC_BASE_POW); in bc_num_addDigits()
328 assert(a < BC_BASE_POW); in bc_num_addDigits()
418 assert(b <= BC_BASE_POW); in bc_num_mulArray()
432 carry = in / BC_BASE_POW; in bc_num_mulArray()
1283 if (sum >= ((BcBigDig) BC_BASE_POW) * BC_BASE_POW) in bc_num_m_simp()
1286 sum %= BC_BASE_POW; in bc_num_m_simp()
1291 if (sum >= BC_BASE_POW) in bc_num_m_simp()
1294 sum %= BC_BASE_POW; in bc_num_m_simp()
3011 if (acc >= BC_BASE_POW) in bc_num_printFixup()
[all …]
H A Dbc_parse.c1797 bc_vm_printf("BC_BASE_POW = %lu\n", (ulong) BC_BASE_POW); in bc_parse_stmt()
/freebsd-14.2/contrib/bc/include/
H A Dnum.h69 #define BC_BASE_POW (1000000000) macro
90 #define BC_BASE_POW (10000) macro
H A Dvm.h428 #define BC_MAX_OBASE ((BcBigDig) (BC_BASE_POW))