Lines Matching refs:btemp
1823 BcNum copy, btemp; in bc_num_p() local
1828 if (BC_ERR(bc_num_nonInt(b, &btemp))) bc_err(BC_ERR_MATH_NON_INTEGER); in bc_num_p()
1830 if (BC_NUM_ZERO(&btemp)) { in bc_num_p()
1836 if (BC_NUM_NEG_NP(btemp)) bc_err(BC_ERR_MATH_DIVIDE_BY_ZERO); in bc_num_p()
1841 if (BC_NUM_ONE(&btemp)) { in bc_num_p()
1842 if (!BC_NUM_NEG_NP(btemp)) bc_num_copy(c, a); in bc_num_p()
1847 neg = BC_NUM_NEG_NP(btemp); in bc_num_p()
1848 BC_NUM_NEG_CLR_NP(btemp); in bc_num_p()
1850 exp = bc_num_bigdig(&btemp); in bc_num_p()
3786 BcNum base, exp, two, temp, atemp, btemp, ctemp; in bc_num_modexp() local
3798 btemp.len = 0; in bc_num_modexp()
3803 if (BC_ERR(bc_num_nonInt(a, &atemp) || bc_num_nonInt(b, &btemp) || in bc_num_modexp()
3815 bc_num_init(&temp, btemp.len + 1); in bc_num_modexp()
3816 bc_num_createCopy(&exp, &btemp); in bc_num_modexp()