Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/bc/src/
H A Dnum.c223 assert(((BcBigDig) BC_BASE_POW) * 2 == ((BcDig) BC_BASE_POW) * 2); in bc_num_addDigits()
224 assert(a < BC_BASE_POW); in bc_num_addDigits()
225 assert(b < BC_BASE_POW); in bc_num_addDigits()
232 assert(a < BC_BASE_POW); in bc_num_addDigits()
247 assert(a < BC_BASE_POW); in bc_num_subDigits()
248 assert(b < BC_BASE_POW); in bc_num_subDigits()
309 assert(b <= BC_BASE_POW); in bc_num_mulArray()
1099 if (sum >= ((BcBigDig) BC_BASE_POW) * BC_BASE_POW) { in bc_num_m_simp()
1101 sum %= BC_BASE_POW; in bc_num_m_simp()
1108 sum %= BC_BASE_POW; in bc_num_m_simp()
[all …]
H A Dbc_parse.c1700 bc_vm_printf("BC_BASE_POW = %lu\n", (ulong) BC_BASE_POW); in bc_parse_stmt()
/freebsd-13.1/contrib/bc/include/
H A Dnum.h73 #define BC_BASE_POW (1000000000) macro
90 #define BC_BASE_POW (10000) macro
H A Dvm.h293 #define BC_MAX_OBASE ((BcBigDig) (BC_BASE_POW))