Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libc/src/__support/
H A Dhigh_precision_decimal.h368 int64_t temp_exponent = static_cast<int64_t>(this->decimal_point) + variable
373 if (temp_exponent > (1 << 30)) {
374 temp_exponent = (1 << 30);
375 } else if (temp_exponent < -(1 << 30)) {
376 temp_exponent = -(1 << 30);
378 this->decimal_point = static_cast<int32_t>(temp_exponent);
H A Dstr_to_float.h962 int64_t temp_exponent = static_cast<int64_t>(exponent) + in decimal_string_to_float() local
967 if (temp_exponent > FPBits::MAX_BIASED_EXPONENT) { in decimal_string_to_float()
969 } else if (temp_exponent < -FPBits::MAX_BIASED_EXPONENT) { in decimal_string_to_float()
972 exponent = static_cast<int32_t>(temp_exponent); in decimal_string_to_float()
1076 int64_t temp_exponent = static_cast<int64_t>(exponent) + in hexadecimal_string_to_float() local
1081 if (temp_exponent > FPBits::MAX_BIASED_EXPONENT) { in hexadecimal_string_to_float()
1083 } else if (temp_exponent < -FPBits::MAX_BIASED_EXPONENT) { in hexadecimal_string_to_float()
1086 exponent = static_cast<int32_t>(temp_exponent); in hexadecimal_string_to_float()