Home
last modified time | relevance | path

Searched refs:SubType (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp146 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfPrecision() local
148 if (!DestType->isRealType() || !SubType->isIntegerType()) in isLossOfPrecision()
177 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType); in isLossOfPrecision()
178 if (SubType->isSignedIntegerType()) in isLossOfPrecision()
198 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfSign() local
200 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
/openbsd-src/sys/stand/efi/include/
H A Defidevp.h36 UINT8 SubType; member
51 #define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
54 #define DevicePathSubType(a) ( (a)->SubType )
59 #define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
71 (a)->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; \
/openbsd-src/gnu/llvm/llvm/include/llvm/TextAPI/
H A DArchitecture.h28 #define ARCHINFO(Arch, Type, SubType, NumBits) AK_##Arch, argument
/openbsd-src/bin/ksh/
H A Deval.c146 typedef struct SubType { struct
152 struct SubType *prev; /* old type */ argument
153 struct SubType *next; /* poped type (to avoid re-allocating) */ argument
154 } SubType; typedef
172 SubType st_head, *st; in expand()
317 SubType *newst; in expand()
320 sizeof(SubType), ATEMP); in expand()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1011 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
1013 if (Error E = Reader.readInteger(SubType)) in initializeFileAndStringTables()
1023 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
1071 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
1072 if (Error E = consume(Data, SubType)) in printCodeViewSymbolSection()
1079 if (SubType & SubsectionIgnoreFlag) { in printCodeViewSymbolSection()
1080 W.printHex("IgnoredSubsectionKind", SubType); in printCodeViewSymbolSection()
1081 SubType &= ~SubsectionIgnoreFlag; in printCodeViewSymbolSection()
1083 W.printEnum("SubSectionType", SubType, ArrayRef(SubSectionTypes)); in printCodeViewSymbolSection()
1108 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp129 bool validateTypes(Record *SubType, Record *Type, bool IsSourceInst);
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DTGParser.cpp858 RecTy *SubType = ParseType(); in ParseType() local
859 if (!SubType) return nullptr; in ParseType()
865 return ListRecTy::get(SubType); in ParseType()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp9728 QualType SubType, bool ConstRHS, in checkTrivialSubobjectCall() argument
9732 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); in checkTrivialSubobjectCall()
9737 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), in checkTrivialSubobjectCall()
9743 SubType.addConst(); in checkTrivialSubobjectCall()
9747 << Kind << SubType.getUnqualifiedType(); in checkTrivialSubobjectCall()
9752 << Kind << SubType.getUnqualifiedType() << CSM << SubType; in checkTrivialSubobjectCall()
9756 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
9759 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
9765 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
H A DSemaTemplate.cpp1372 QualType SubType; in RequireStructuralType() local
1379 SubType = T; in RequireStructuralType()
1390 SubType = T; in RequireStructuralType()
1399 << T << Kind << SubType; in RequireStructuralType()
1400 T = SubType; in RequireStructuralType()
/openbsd-src/gnu/llvm/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4967 unsigned SubType = 0; in parseFunctionBody() local
4973 SubType = IdxC->getZExtValue(); in parseFunctionBody()
4975 ResTypeID = getContainedTypeID(ResTypeID, SubType); in parseFunctionBody()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp10151 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, in mergeTransparentUnionType() argument
10159 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified); in mergeTransparentUnionType()