Searched refs:loMant (Results 1 – 1 of 1) sorted by relevance
1017 uint32_t hiMant, loMant; in ConvertToIeeeExtended() local1027 expon = 0; hiMant = 0; loMant = 0; in ConvertToIeeeExtended()1032 expon = sign|0x7FFF; hiMant = 0; loMant = 0; /* infinity */ in ConvertToIeeeExtended()1046 loMant = FloatToUnsigned(fsMant); in ConvertToIeeeExtended()1056 bytes[6] = loMant >> 24; in ConvertToIeeeExtended()1057 bytes[7] = loMant >> 16; in ConvertToIeeeExtended()1058 bytes[8] = loMant >> 8; in ConvertToIeeeExtended()1059 bytes[9] = loMant; in ConvertToIeeeExtended()1121 uint32_t hiMant, loMant; in ConvertFromIeeeExtended() local1128 loMant = ((uint32_t)(bytes[6] & 0xFF) << 24) in ConvertFromIeeeExtended()[all …]