Searched refs:DIGIT_SIZE (Results 1 – 2 of 2) sorted by relevance
31 #define DIGIT_SIZE (52)221 int exp_digits = number_of_digits(factor_size + 2, DIGIT_SIZE);222 int coeff_pow = 4 * (DIGIT_SIZE * exp_digits - factor_size);602 assert(out_len >= number_of_digits(in_bitsize, DIGIT_SIZE));606 for (; in_bitsize >= (2 * DIGIT_SIZE); in_bitsize -= (2 * DIGIT_SIZE), out += 2) {618 if (in_bitsize > DIGIT_SIZE) {623 in_bitsize -= DIGIT_SIZE;666 for (; out_bitsize >= (2 * DIGIT_SIZE);667 out_bitsize -= (2 * DIGIT_SIZE), in += 2) {678 if (out_bitsize > DIGIT_SIZE) {[all …]
367 constexpr size_t DIGIT_SIZE = cpp::max(MAX_DIGITS(), Fmt::MIN_DIGITS); in compute_buffer_size() local370 return DIGIT_SIZE + SIGN_SIZE + PREFIX_SIZE; in compute_buffer_size()