reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/BuiltinTypes.def
  122 SIGNED_TYPE(Int128, Int128Ty)
tools/clang/lib/AST/ASTContext.cpp
 1179     Int128Decl = buildImplicitTypedef(Int128Ty, "__int128_t");
 1270   InitBuiltinType(Int128Ty,            BuiltinType::Int128);
 5781     return 7 + (getIntWidth(Int128Ty) << 3);
 9519       Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
10215     return Signed ? Int128Ty : UnsignedInt128Ty;
tools/clang/lib/CodeGen/CodeGenTBAA.cpp
  141       return getTypeInfo(Context.Int128Ty);
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 3829       getContext().UnsignedLongLongTy, getContext().Int128Ty,
tools/clang/lib/Sema/SemaOverload.cpp
 7949       ArithmeticTypes.push_back(S.Context.Int128Ty);
tools/clang/lib/Sema/SemaType.cpp
 1476       Result = Context.Int128Ty;
tools/clang/lib/Serialization/ASTReader.cpp
 7318       T = Context.Int128Ty;
tools/lldb/source/Symbol/ClangASTContext.cpp
  895     if (QualTypeMatchesBitSize(bit_size, ast, ast->Int128Ty))
  896       return CompilerType(clang_ast_context, ast->Int128Ty.getAsOpaquePtr());
 1133           if (QualTypeMatchesBitSize(bit_size, ast, ast->Int128Ty))
 1134             return CompilerType(this, ast->Int128Ty.getAsOpaquePtr());
 1148       if (QualTypeMatchesBitSize(bit_size, ast, ast->Int128Ty))
 1149         return CompilerType(this, ast->Int128Ty.getAsOpaquePtr());
 1989     return ast->Int128Ty.getAsOpaquePtr();
 2283       if (bit_size == ast->getTypeSize(ast->Int128Ty))
 2284         return CompilerType(clang_ast_context, ast->Int128Ty.getAsOpaquePtr());
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
   81                                    context->Int128Ty));