Searched refs:OtherMantissaBits (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/common/ |
D | tcuFloat.hpp | 66 …template <typename OtherStorageType, int OtherExponentBits, int OtherMantissaBits, int OtherExpone… 67 …static Float convert (const Float<OtherStorageType, OtherExponentBits, OtherMantissaBits, Othe… 242 template <typename OtherStorageType, int OtherExponentBits, int OtherMantissaBits, int OtherExponen… 245 …(const Float<OtherStorageType, OtherExponentBits, OtherMantissaBits, OtherExponentBias, OtherFlags… in convert() argument 274 while (!(m & (1ull<<OtherMantissaBits))) in convert() 286 int bitDiff = (OtherMantissaBits-MantissaBits) + (eMin-e); in convert() 298 m = m & ~(1ull<<OtherMantissaBits); in convert() 300 if (MantissaBits < OtherMantissaBits) in convert() 303 int bitDiff = OtherMantissaBits-MantissaBits; in convert() 318 int bitDiff = MantissaBits-OtherMantissaBits; in convert()
|