/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 | 42 class UInt128 { 44 UInt128() : high_bits_(0), low_bits_(0) { } 45 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } 271 UInt128 fractionals128 = UInt128(fractionals, 0);
|
/external/v8/src/ |
fixed-dtoa.cc | 42 class UInt128 { 44 UInt128() : high_bits_(0), low_bits_(0) { } 45 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } 271 UInt128 fractionals128 = UInt128(fractionals, 0);
|
/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)); } 152 UInt128& UInt128::operator/=(const uint32_t divisor) 180 uint64_t UInt128::multiplyHigh(uint64_t u, uint64_t v) 428 UInt128 work(UInt128::multiply(lhsCoefficient, rhsCoefficient)) [all...] |
/external/clang/lib/Serialization/ |
ASTCommon.cpp | 37 case BuiltinType::UInt128: ID = PREDEF_TYPE_UINT128_ID; break;
|
/external/clang/lib/AST/ |
TypeLoc.cpp | 270 case BuiltinType::UInt128:
|
NSAPI.cpp | 342 case BuiltinType::UInt128:
|
Type.cpp | 748 BT->getKind() <= BuiltinType::UInt128; 764 BT->getKind() <= BuiltinType::UInt128; [all...] |
ASTContext.cpp | [all...] |
MicrosoftMangle.cpp | [all...] |
ItaniumMangle.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CodeGenTBAA.cpp | 131 case BuiltinType::UInt128:
|
CodeGenTypes.cpp | 375 case BuiltinType::UInt128:
|
CGRTTI.cpp | 193 case BuiltinType::UInt128: [all...] |
CGDebugInfo.cpp | 496 case BuiltinType::UInt128: [all...] |
TargetInfo.cpp | [all...] |
/external/clang/lib/Analysis/ |
PrintfFormatString.cpp | 449 case BuiltinType::UInt128:
|
/external/clang/tools/libclang/ |
CXType.cpp | 41 BTCASE(UInt128); 441 TKIND(UInt128);
|
CIndexUSRs.cpp | 559 case BuiltinType::UInt128:
|
/external/clang/lib/Sema/ |
Sema.cpp | 139 DeclarationName UInt128 = &Context.Idents.get("__uint128_t"); 140 if (IdResolver.begin(UInt128) == IdResolver.end()) [all...] |
/external/clang/include/clang/AST/ |
TypeLoc.h | 504 return (bk >= BuiltinType::UShort && bk <= BuiltinType::UInt128) [all...] |
Type.h | [all...] |