Searched refs:OtherMantissaBits (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/common/ |
D | tcuFloat.hpp | 73 …template <typename OtherStorageType, int OtherExponentBits, int OtherMantissaBits, int OtherExpone… 74 …static Float convert (const Float<OtherStorageType, OtherExponentBits, OtherMantissaBits, Othe… 268 template <typename OtherStorageType, int OtherExponentBits, int OtherMantissaBits, int OtherExponen… 271 …(const Float<OtherStorageType, OtherExponentBits, OtherMantissaBits, OtherExponentBias, OtherFlags… in convert() argument 302 while (!(m & (1ull<<OtherMantissaBits))) in convert() 314 int bitDiff = (OtherMantissaBits-MantissaBits) + (eMin-e); in convert() 351 m = m & ~(1ull<<OtherMantissaBits); in convert() 353 if (MantissaBits < OtherMantissaBits) in convert() 356 int bitDiff = OtherMantissaBits-MantissaBits; in convert() 398 int bitDiff = MantissaBits-OtherMantissaBits; in convert()
|