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… 240 template <typename OtherStorageType, int OtherExponentBits, int OtherMantissaBits, int OtherExponen… 243 …(const Float<OtherStorageType, OtherExponentBits, OtherMantissaBits, OtherExponentBias, OtherFlags… in convert() argument 272 while (!(m & (1ull<<OtherMantissaBits))) in convert() 284 int bitDiff = (OtherMantissaBits-MantissaBits) + (eMin-e); in convert() 296 m = m & ~(1ull<<OtherMantissaBits); in convert() 298 if (MantissaBits < OtherMantissaBits) in convert() 301 int bitDiff = OtherMantissaBits-MantissaBits; in convert() 316 int bitDiff = MantissaBits-OtherMantissaBits; in convert()
|