Lines Matching defs:btemp
2098 BcNum copy, btemp;
2110 btemp.len = 0;
2111 btemp.rdx = 0;
2112 btemp.num = NULL;
2115 if (BC_ERR(bc_num_nonInt(b, &btemp))) bc_err(BC_ERR_MATH_NON_INTEGER);
2117 assert(btemp.len == 0 || btemp.num != NULL);
2119 if (BC_NUM_ZERO(&btemp))
2127 if (BC_NUM_NEG_NP(btemp)) bc_err(BC_ERR_MATH_DIVIDE_BY_ZERO);
2132 if (BC_NUM_ONE(&btemp))
2134 if (!BC_NUM_NEG_NP(btemp)) bc_num_copy(c, a);
2139 neg = BC_NUM_NEG_NP(btemp);
2140 BC_NUM_NEG_CLR_NP(btemp);
2142 exp = bc_num_bigdig(&btemp);
4361 BcNum base, exp, two, temp, atemp, btemp, ctemp;
4375 btemp.len = 0;
4380 if (BC_ERR(bc_num_nonInt(a, &atemp) || bc_num_nonInt(b, &btemp) ||
4392 bc_num_init(&temp, btemp.len + 1);
4393 bc_num_createCopy(&exp, &btemp);