Searched defs:UInt128 (Results 1 – 2 of 2) sorted by relevance
22 TEST(UInt128, Equality) { in TEST() argument33 TEST(UInt128, Shifting) { in TEST() argument80 TEST(UInt128, LargeShift) { in TEST() argument102 TEST(UInt128, BooleanOperators) { in TEST() argument115 TEST(UInt128, Addition) { in TEST() argument129 TEST(UInt128, Subtraction) { in TEST() argument
27 UInt128(uint64_t low) : low_(low) { } in UInt128() function28 UInt128(uint64_t high, uint64_t low) : low_(low), high_(high) { } in UInt128() function29 UInt128(const UInt128& other) : low_(other.low_), high_(other.high_) { } in UInt128() function