Searched refs:temp_exponent (Results 1 – 2 of 2) sorted by relevance
368 int64_t temp_exponent = static_cast<int64_t>(this->decimal_point) + variable373 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);
962 int64_t temp_exponent = static_cast<int64_t>(exponent) + in decimal_string_to_float() local967 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() local1081 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()