Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp135 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfPrecision() local
137 if (!DestType->isRealType() || !SubType->isIntegerType()) in isLossOfPrecision()
166 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType); in isLossOfPrecision()
167 if (SubType->isSignedIntegerType()) in isLossOfPrecision()
187 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfSign() local
189 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
/freebsd-13.1/stand/efi/include/
H A Defidevp.h38 UINT8 SubType; member
53 #define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
56 #define DevicePathSubType(a) ( (a)->SubType )
61 #define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
73 (a)->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; \
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitecture.h28 #define ARCHINFO(Arch, Type, SubType, NumBits) AK_##Arch, argument
/freebsd-13.1/lib/libefivar/
H A Duefi-dputil.c241 return ((const EFI_DEVICE_PATH_PROTOCOL *)(Node))->SubType; in DevicePathSubType()
448 DevicePath->SubType = NodeSubType; in CreateDeviceNode()
H A Duefi-dplib.h100 UINT8 SubType; member
H A Defivar-dp-parse.c618 IN UINT8 SubType in ConvertFromTextVendor() argument
637 SubType, in ConvertFromTextVendor()
3680 DeviceNode->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE; in UefiDevicePathLibConvertTextToDevicePath()
H A Defivar-dp-format.c2316 DevicePathSubType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].SubType in UefiDevicePathLibConvertDeviceNodeToText()
2380 DevicePathSubType (Node) == mUefiDevicePathLibToTextTable[Index].SubType in UefiDevicePathLibConvertDevicePathToText()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp953 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
955 if (Error E = Reader.readInteger(SubType)) in initializeFileAndStringTables()
965 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
1013 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
1014 if (Error E = consume(Data, SubType)) in printCodeViewSymbolSection()
1021 if (SubType & SubsectionIgnoreFlag) { in printCodeViewSymbolSection()
1022 W.printHex("IgnoredSubsectionKind", SubType); in printCodeViewSymbolSection()
1023 SubType &= ~SubsectionIgnoreFlag; in printCodeViewSymbolSection()
1025 W.printEnum("SubSectionType", SubType, makeArrayRef(SubSectionTypes)); in printCodeViewSymbolSection()
1050 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection()
/freebsd-13.1/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h51 UINT8 SubType; ///< Varies by Type member
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVCompressInstEmitter.cpp120 bool validateTypes(Record *SubType, Record *Type, bool IsSourceInst);
/freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp847 RecTy *SubType = ParseType(); in ParseType() local
848 if (!SubType) return nullptr; in ParseType()
854 return ListRecTy::get(SubType); in ParseType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp9462 QualType SubType, bool ConstRHS, in checkTrivialSubobjectCall() argument
9466 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); in checkTrivialSubobjectCall()
9471 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), in checkTrivialSubobjectCall()
9477 SubType.addConst(); in checkTrivialSubobjectCall()
9481 << Kind << SubType.getUnqualifiedType(); in checkTrivialSubobjectCall()
9486 << Kind << SubType.getUnqualifiedType() << CSM << SubType; in checkTrivialSubobjectCall()
9490 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
9493 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
9499 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
H A DSemaTemplate.cpp1366 QualType SubType; in RequireStructuralType() local
1373 SubType = T; in RequireStructuralType()
1384 SubType = T; in RequireStructuralType()
1393 << T << Kind << SubType; in RequireStructuralType()
1394 T = SubType; in RequireStructuralType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9412 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, in mergeTransparentUnionType() argument
9420 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified); in mergeTransparentUnionType()