Searched refs:mantissaBits (Results 1 – 1 of 1) sorted by relevance
42 const uint32_t mantissaBits, const uint32_t exponentBits, const bool explicitLeadingBit) { in generic_binary_to_decimal() argument62 …fd.mantissa = explicitLeadingBit ? ieeeMantissa & ((ONE << (mantissaBits - 1)) - 1) : ieeeMantissa; in generic_binary_to_decimal()74 e2 = 1 - bias - mantissaBits + 1 - 2; in generic_binary_to_decimal()76 e2 = ieeeExponent - bias - mantissaBits + 1 - 2; in generic_binary_to_decimal()81 e2 = 1 - bias - mantissaBits - 2; in generic_binary_to_decimal()84 e2 = ieeeExponent - bias - mantissaBits - 2; in generic_binary_to_decimal()85 m2 = (ONE << mantissaBits) | ieeeMantissa; in generic_binary_to_decimal()99 (ieeeMantissa != (explicitLeadingBit ? ONE << (mantissaBits - 1) : 0)) in generic_binary_to_decimal()
Completed in 3 milliseconds