Home | History | Annotate | Download | only in platform

Lines Matching defs:UInt128

126 class UInt128 {
128 UInt128(uint64_t low, uint64_t high)
133 UInt128& operator/=(uint32_t);
138 static UInt128 multiply(uint64_t u, uint64_t v) { return UInt128(u * v, multiplyHigh(u, v)); }
151 UInt128& UInt128::operator/=(const uint32_t divisor)
179 uint64_t UInt128::multiplyHigh(uint64_t u, uint64_t v)
427 UInt128 work(UInt128::multiply(lhsCoefficient, rhsCoefficient));