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

  /external/clang/lib/Sema/
Sema.cpp 159 DeclarationName Int128 = &Context.Idents.get("__int128_t");
160 if (IdResolver.begin(Int128) == IdResolver.end())
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btConvexHullComputer.cpp 140 class Int128
146 Int128()
150 Int128(uint64_t low, uint64_t high): low(low), high(high)
154 Int128(uint64_t low): low(low), high(0)
158 Int128(int64_t value): low(value), high((value >= 0) ? 0 : (uint64_t) -1LL)
162 static Int128 mul(int64_t a, int64_t b);
164 static Int128 mul(uint64_t a, uint64_t b);
166 Int128 operator-() const
168 return Int128((uint64_t) -(int64_t)low, ~high + (low == 0));
171 Int128 operator+(const Int128& b) cons
    [all...]

Completed in 62 milliseconds