Home
last modified time | relevance | path

Searched refs:BC_NUM_BIGDIG_LOG10 (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/bc/include/
H A Dvm.h726 BcDig max_num[BC_NUM_BIGDIG_LOG10];
729 BcDig max2_num[BC_NUM_BIGDIG_LOG10];
H A Drand.h416 #define BC_RAND_NUM_SIZE (BC_NUM_BIGDIG_LOG10 * 2 + 2)
H A Dnum.h177 #define BC_NUM_BIGDIG_LOG10 (BC_NUM_DEF_SIZE) macro
H A Dprogram.h154 BcDig strmb_num[BC_NUM_BIGDIG_LOG10];
/freebsd/contrib/bc/src/
H A Dnum.c2598 bc_num_init(&temp, BC_NUM_BIGDIG_LOG10); in bc_num_parseBase()
2599 bc_num_init(&mult1, BC_NUM_BIGDIG_LOG10); in bc_num_parseBase()
2635 bc_num_init(&mult2, BC_NUM_BIGDIG_LOG10); in bc_num_parseBase()
2899 BcDig digs[BC_NUM_BIGDIG_LOG10]; in bc_num_printExponent()
2961 bc_num_setup(&exp, digs, BC_NUM_BIGDIG_LOG10); in bc_num_printExponent()
3106 BcDig digit_digs[BC_NUM_BIGDIG_LOG10 + 1]; in bc_num_printNum()
3289 bc_num_init(&flen1, BC_NUM_BIGDIG_LOG10); in bc_num_printNum()
3290 bc_num_init(&flen2, BC_NUM_BIGDIG_LOG10); in bc_num_printNum()
3489 bc_num_init(n, BC_NUM_BIGDIG_LOG10); in bc_num_createFromBigdig()
3688 bc_num_expand(n, BC_NUM_BIGDIG_LOG10); in bc_num_bigdig2num()
[all …]
H A Dlibrary.c1488 BcDig exp_digs[BC_NUM_BIGDIG_LOG10]; in bcl_frandHelper()
1489 BcDig ten_digs[BC_NUM_BIGDIG_LOG10]; in bcl_frandHelper()
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 Dvm.c1774 bc_num_setup(&vm->max, vm->max_num, BC_NUM_BIGDIG_LOG10);
1775 bc_num_setup(&vm->max2, vm->max2_num, BC_NUM_BIGDIG_LOG10);
H A Dprogram.c2921 bc_num_setup(&p->strmb, p->strmb_num, BC_NUM_BIGDIG_LOG10); in bc_program_init()