Lines Matching refs:temp
49 bc_num temp; in _bc_truncate() local
51 temp = bc_new_num ((*num)->n_len, 0); in _bc_truncate()
52 temp->n_sign = (*num)->n_sign; in _bc_truncate()
53 memcpy (temp->n_value, (*num)->n_value, (*num)->n_len); in _bc_truncate()
55 *num = temp; in _bc_truncate()
66 bc_num power, exponent, modulus, parity, temp; in bc_raisemod() local
77 temp = bc_copy_num (BCG(_one_)); in bc_raisemod()
105 temp = bc_new_num (1, scale); in bc_raisemod()
114 bc_multiply (temp, power, &temp, rscale); in bc_raisemod()
115 (void) bc_modulo (temp, modulus, &temp, scale); in bc_raisemod()
129 *result = temp; in bc_raisemod()