Searched refs:mant_long (Results 1 – 4 of 4) sorted by relevance
6 unsigned long mant_long; variable18 mant_long = ((unsigned long) m2) & 0xffffffff; in main()20 if (mant_long == 0x8ccccccc) in main()
538 unsigned long mant_long; in floatformat_from_double() local542 mant_long = (unsigned long)mant; in floatformat_from_double()543 mant -= mant_long; in floatformat_from_double()551 mant_long &= 0x7fffffff; in floatformat_from_double()558 mant_long >>= 32 - mant_bits; in floatformat_from_double()562 mant_off, mant_bits, mant_long); in floatformat_from_double()
398 unsigned long mant_long; in convert_doublest_to_floatformat() local402 mant_long = ((unsigned long) mant) & 0xffffffffL; in convert_doublest_to_floatformat()403 mant -= mant_long; in convert_doublest_to_floatformat()412 mant_long <<= 1; in convert_doublest_to_floatformat()413 mant_long &= 0xffffffffL; in convert_doublest_to_floatformat()429 mant_long >>= 32 - mant_bits; in convert_doublest_to_floatformat()433 mant_off, mant_bits, mant_long); in convert_doublest_to_floatformat()
967 converting from double to float. (It wasn't shifting mant_long if