Searched defs:Int128 (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSema.cpp159 DeclarationName Int128 = &Context.Idents.get("__int128_t"); local
160 if (IdResolver.begin(Int128) == IdResolver.end())
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
H A DbtConvexHullComputer.cpp140 class Int128 class in class:btConvexHullInternal
146 Int128() function in class:btConvexHullInternal::Int128
150 Int128(uint64_t low, uint64_t high): low(low), high(high) function in class:btConvexHullInternal::Int128
154 Int128(uint64_t low): low(low), high(0) function in class:btConvexHullInternal::Int128
158 Int128(int64_t value): low(value), high((value >= 0) ? 0 : (uint64_t) -1LL) function in class:btConvexHullInternal::Int128
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 operato
[all...]

Completed in 183 milliseconds