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

/external/llvm/unittests/Support/
H A DScaledNumberTest.cpp1 //===- llvm/unittest/Support/ScaledNumberTest.cpp - ScaledPair tests -----==//
19 template <class UIntT> struct ScaledPair { struct in namespace:__anon12814
22 ScaledPair(const std::pair<UIntT, int16_t> &F) : D(F.first), S(F.second) {} function in struct:__anon12814::ScaledPair
23 ScaledPair(UIntT D, int S) : D(D), S(S) {} function in struct:__anon12814::ScaledPair
25 bool operator==(const ScaledPair<UIntT> &X) const {
31 const ScaledPair<UIntT> &R) {
32 return ScaledPair<UIntT>(L) == R;
35 void PrintTo(const ScaledPair<UIntT> &F, ::std::ostream *os) {
39 typedef ScaledPair<uint32_t> SP32;
40 typedef ScaledPair<uint64_
[all...]

Completed in 119 milliseconds