Searched refs:UIntT (Results 1 – 2 of 2) sorted by relevance
/external/llvm/unittests/Support/ |
D | ScaledNumberTest.cpp | 19 template <class UIntT> struct ScaledPair { 20 UIntT D; 22 ScaledPair(const std::pair<UIntT, int16_t> &F) : D(F.first), S(F.second) {} in ScaledPair() 23 ScaledPair(UIntT D, int S) : D(D), S(S) {} in ScaledPair() 25 bool operator==(const ScaledPair<UIntT> &X) const { in operator ==() 29 template <class UIntT> 30 bool operator==(const std::pair<UIntT, int16_t> &L, in operator ==() argument 31 const ScaledPair<UIntT> &R) { in operator ==() 32 return ScaledPair<UIntT>(L) == R; in operator ==() 34 template <class UIntT> [all …]
|
/external/llvm-project/llvm/unittests/Support/ |
D | ScaledNumberTest.cpp | 18 template <class UIntT> struct ScaledPair { 19 UIntT D; 21 ScaledPair(const std::pair<UIntT, int16_t> &F) : D(F.first), S(F.second) {} in ScaledPair() 22 ScaledPair(UIntT D, int S) : D(D), S(S) {} in ScaledPair() 24 bool operator==(const ScaledPair<UIntT> &X) const { in operator ==() 28 template <class UIntT> 29 bool operator==(const std::pair<UIntT, int16_t> &L, in operator ==() argument 30 const ScaledPair<UIntT> &R) { in operator ==() 31 return ScaledPair<UIntT>(L) == R; in operator ==() 33 template <class UIntT> [all …]
|