Searched defs:ScaledPair (Results 1 – 1 of 1) sorted by relevance
18 template <class UIntT> struct ScaledPair { struct19 UIntT D;20 int S;21 ScaledPair(const std::pair<UIntT, int16_t> &F) : D(F.first), S(F.second) {} in ScaledPair() argument22 ScaledPair(UIntT D, int S) : D(D), S(S) {} in ScaledPair() function24 bool operator==(const ScaledPair<UIntT> &X) const { in operator ==()