HomeSort by: relevance | last modified time | path
    Searched refs:ExtIntType (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 341 ExtIntType::ExtIntType(bool IsUnsigned, unsigned NumBits)
2016 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType))
2033 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType))
2063 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType))
2080 if (const ExtIntType *IT = dyn_cast<ExtIntType>(CanonicalType)
    [all...]
ASTContext.cpp 2263 const auto *EIT = cast<ExtIntType>(T);
4427 ExtIntType::Profile(ID, IsUnsigned, NumBits);
4430 if (ExtIntType *EIT = ExtIntTypes.FindNodeOrInsertPos(ID, InsertPos))
4433 auto *New = new (*this, TypeAlignment) ExtIntType(IsUnsigned, NumBits);
6305 if (const auto *EIT = dyn_cast<ExtIntType>(T))
9942 bool LHSUnsigned = LHS->castAs<ExtIntType>()->isUnsigned();
9943 bool RHSUnsigned = RHS->castAs<ExtIntType>()->isUnsigned();
9944 unsigned LHSBits = LHS->castAs<ExtIntType>()->getNumBits();
9945 unsigned RHSBits = RHS->castAs<ExtIntType>()->getNumBits();
10095 if(const auto *EIT = T->getAs<ExtIntType>())
    [all...]
TypePrinter.cpp 1197 void TypePrinter::printExtIntBefore(const ExtIntType *T, raw_ostream &OS) {
1204 void TypePrinter::printExtIntAfter(const ExtIntType *T, raw_ostream &OS) {}
ASTStructuralEquivalence.cpp 1208 const auto *Int1 = cast<ExtIntType>(T1);
1209 const auto *Int2 = cast<ExtIntType>(T2);
MicrosoftMangle.cpp 3335 void MicrosoftCXXNameMangler::mangleType(const ExtIntType *T, Qualifiers,
ItaniumMangle.cpp 3947 void CXXNameMangler::mangleType(const ExtIntType *T) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 107 if (const auto *EIT = Ty->getAs<ExtIntType>())
735 if (const auto *EIT = Ty->getAs<ExtIntType>())
757 if (const auto *EIT = RetTy->getAs<ExtIntType>())
981 } else if (const auto *EIT = Ty->getAs<ExtIntType>()) {
1001 if (const auto *EIT = RetTy->getAs<ExtIntType>()) {
1554 if (const auto *EIT = RetTy->getAs<ExtIntType>())
1890 if (const auto * EIT = Ty->getAs<ExtIntType>()) {
2972 if (const auto *EITy = Ty->getAs<ExtIntType>()) {
4996 if (const auto *EIT = Ty->getAs<ExtIntType>())
5215 if (const auto *EIT = Ty->getAs<ExtIntType>())
    [all...]
CodeGenTBAA.cpp 212 if (const auto *EIT = dyn_cast<ExtIntType>(Ty)) {
CGDebugInfo.h 180 llvm::DIType *CreateType(const ExtIntType *Ty);
CodeGenTypes.cpp 100 // If this is a bool type, or an ExtIntType in a bitfield representation,
789 const auto &EIT = cast<ExtIntType>(Ty);
CGDebugInfo.cpp 918 llvm::DIType *CGDebugInfo::CreateType(const ExtIntType *Ty) {
3353 return CreateType(cast<ExtIntType>(Ty));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 6309 class ExtIntType final : public Type, public llvm::FoldingSetNode {
6315 ExtIntType(bool isUnsigned, unsigned NumBits);
6894 return isa<ExtIntType>(CanonicalType);
TypeLoc.h 2567 ExtIntType> {};
RecursiveASTVisitor.h 1077 DEF_TRAVERSE_TYPE(ExtIntType, {})
1363 DEF_TRAVERSE_TYPELOC(ExtIntType, {})
ASTContext.h 243 mutable llvm::FoldingSet<ExtIntType> ExtIntTypes;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 328 // Disallow signed ExtIntType args larger than 128 bits to mul function until
5757 const auto *ExtIntValType = ValType->getAs<ExtIntType>();
10715 if (const auto *EIT = dyn_cast<ExtIntType>(T))
10741 if (const auto *EIT = dyn_cast<ExtIntType>(T))
SemaTemplateDeduction.cpp 2265 if (const auto *IntArg = dyn_cast<ExtIntType>(Arg)){
SemaTemplate.cpp 6154 bool UnnamedLocalNoLinkageFinder::VisitExtIntType(const ExtIntType *T) {
TreeTransform.h 6387 const ExtIntType *EIT = TL.getTypePtr();

Completed in 110 milliseconds