Lines Matching defs:res_digit
78 mp_limb_t res_digit;
83 res_digit = 0;
90 res_digit |= ((mp_limb_t) inp_digit << next_bitpos) & GMP_NUMB_MASK;
94 rp[size++] = res_digit;
96 res_digit = inp_digit >> (bits_per_indigit - next_bitpos);
100 if (res_digit != 0)
101 rp[size++] = res_digit;
206 mp_limb_t res_digit;
218 res_digit = *str++;
223 res_digit = res_digit * 10 + *str++;
228 res_digit = res_digit * base + *str++;
233 if (res_digit != 0)
235 rp[0] = res_digit;
242 cy_limb = mpn_mul_1c (rp, rp, size, big_base, res_digit);
245 cy_limb += mpn_add_1 (rp, rp, size, res_digit);
253 res_digit = *str++;
259 res_digit = res_digit * 10 + *str++;
267 res_digit = res_digit * base + *str++;
274 if (res_digit != 0)
276 rp[0] = res_digit;
283 cy_limb = mpn_mul_1c (rp, rp, size, big_base, res_digit);
286 cy_limb += mpn_add_1 (rp, rp, size, res_digit);