Home
last modified time | relevance | path

Searched refs:DIGIT_SIZE (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/crypto/bn/
H A Drsaz_exp_x2.c31 #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 …]
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dinteger_to_string.h367 constexpr size_t DIGIT_SIZE = cpp::max(MAX_DIGITS(), Fmt::MIN_DIGITS); in compute_buffer_size() local
370 return DIGIT_SIZE + SIGN_SIZE + PREFIX_SIZE; in compute_buffer_size()