Searched refs:bc_num_setup (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/bc/src/ |
H A D | num.c | 1379 bc_num_setup(&l1, dig_ptr, max); in bc_num_k() 1381 bc_num_setup(&h1, dig_ptr, max); in bc_num_k() 1383 bc_num_setup(&l2, dig_ptr, max); in bc_num_k() 1385 bc_num_setup(&h2, dig_ptr, max); in bc_num_k() 1387 bc_num_setup(&m1, dig_ptr, max); in bc_num_k() 1389 bc_num_setup(&m2, dig_ptr, max); in bc_num_k() 2960 bc_num_setup(&exp, digs, BC_NUM_BIGDIG_LOG10); in bc_num_printExponent() 3287 bc_num_setup(&digit, digit_digs, sizeof(digit_digs) / sizeof(BcDig)); in bc_num_printNum() 3406 bc_num_setup(BcNum* restrict n, BcDig* restrict num, size_t cap) in bc_num_setup() function 3435 bc_num_setup(n, num, req); in bc_num_init() [all …]
|
H A D | vm.c | 1786 bc_num_setup(&vm->zero, vm->zero_num, BC_VM_ONE_CAP); 1790 bc_num_setup(&vm->one, vm->one_num, BC_VM_ONE_CAP); 1800 bc_num_setup(&vm->max, vm->max_num, BC_NUM_BIGDIG_LOG10); 1801 bc_num_setup(&vm->max2, vm->max2_num, BC_NUM_BIGDIG_LOG10);
|
H A D | library.c | 1493 bc_num_setup(&exp, exp_digs, BC_NUM_BIGDIG_LOG10); in bcl_frandHelper() 1494 bc_num_setup(&ten, ten_digs, BC_NUM_BIGDIG_LOG10); in bcl_frandHelper()
|
H A D | program.c | 2894 bc_num_setup(&p->strmb, p->strmb_num, BC_NUM_BIGDIG_LOG10); in bc_program_init()
|
/aosp_15_r20/external/bc/include/ |
H A D | num.h | 437 bc_num_setup(BcNum* restrict n, BcDig* restrict num, size_t cap);
|
/aosp_15_r20/external/toybox/toys/pending/ |
H A D | bc.c | 2128 void bc_num_setup(BcNum *n, signed char *num, size_t cap) { in bc_num_setup() function 2137 bc_num_setup(n, xmalloc(req), req); in bc_num_init() 2314 bc_num_setup(&half, half_digs, sizeof(half_digs)); in bc_num_sqrt() 5411 bc_num_setup(&p->ib, p->ib_num, BC_NUM_LONG_LOG10); in bc_program_init() 5415 bc_num_setup(&p->ob, p->ob_num, BC_NUM_LONG_LOG10); in bc_program_init() 5419 bc_num_setup(&p->one, p->one_num, BC_PROG_ONE_CAP); in bc_program_init()
|