UInt128           128 Source/platform/Decimal.cpp     UInt128(uint64_t low, uint64_t high)
UInt128           133 Source/platform/Decimal.cpp     UInt128& operator/=(uint32_t);
UInt128           138 Source/platform/Decimal.cpp     static UInt128 multiply(uint64_t u, uint64_t v) { return UInt128(u * v, multiplyHigh(u, v)); }
UInt128           151 Source/platform/Decimal.cpp UInt128& UInt128::operator/=(const uint32_t divisor)
UInt128           179 Source/platform/Decimal.cpp uint64_t UInt128::multiplyHigh(uint64_t u, uint64_t v)
UInt128           427 Source/platform/Decimal.cpp         UInt128 work(UInt128::multiply(lhsCoefficient, rhsCoefficient));
UInt128            43 Source/wtf/dtoa/fixed-dtoa.cc         UInt128() : high_bits_(0), low_bits_(0) { }
UInt128            44 Source/wtf/dtoa/fixed-dtoa.cc         UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
UInt128           270 Source/wtf/dtoa/fixed-dtoa.cc             UInt128 fractionals128 = UInt128(fractionals, 0);