Home
last modified time | relevance | path

Searched defs:ScaledPair (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/unittests/Support/
H A DScaledNumberTest.cpp18 template <class UIntT> struct ScaledPair { struct
19 UIntT D;
20 int S;
21 ScaledPair(const std::pair<UIntT, int16_t> &F) : D(F.first), S(F.second) {} in ScaledPair() argument
22 ScaledPair(UIntT D, int S) : D(D), S(S) {} in ScaledPair() function
24 bool operator==(const ScaledPair<UIntT> &X) const { in operator ==()