HomeSort by relevance Sort by last modified time
    Searched defs:UInt128 (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.cpp 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))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 41 class UInt128 {
43 UInt128() : high_bits_(0), low_bits_(0) { }
44 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
270 UInt128 fractionals128 = UInt128(fractionals, 0);
  /external/chromium_org/v8/src/
fixed-dtoa.cc 19 class UInt128 {
21 UInt128() : high_bits_(0), low_bits_(0) { }
22 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { }
248 UInt128 fractionals128 = UInt128(fractionals, 0);
  /external/clang/lib/Sema/
Sema.cpp 162 DeclarationName UInt128 = &Context.Idents.get("__uint128_t");
163 if (IdResolver.begin(UInt128) == IdResolver.end())
    [all...]

Completed in 138 milliseconds