Home
last modified time | relevance | path

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

/freebsd/stand/efi/include/
H A Defidevp.h37 UINT8 SubType; member
52 #define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
55 #define DevicePathSubType(a) ( (a)->SubType )
60 #define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE )
72 (a)->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; \
/freebsd/lib/libefivar/
H A Duefi-dputil.c239 return ((const EFI_DEVICE_PATH_PROTOCOL *)(Node))->SubType; in DevicePathSubType()
446 DevicePath->SubType = NodeSubType; in CreateDeviceNode()
H A Duefi-dplib.h90 UINT8 SubType; member
H A Defivar-dp-format.c2478 (DevicePathSubType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].SubType) in UefiDevicePathLibConvertDeviceNodeToText()
2542 (DevicePathSubType (Node) == mUefiDevicePathLibToTextTable[Index].SubType) in UefiDevicePathLibConvertDevicePathToText()
H A Defivar-dp-parse.c627 IN UINT8 SubType in ConvertFromTextVendor() argument
646 SubType, in ConvertFromTextVendor()
4029 DeviceNode->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE; in UefiDevicePathLibConvertTextToDevicePath()
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitecture.h28 #define ARCHINFO(Arch, Type, SubType, NumBits) AK_##Arch, argument
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp339 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables()
341 if (Error E = Reader.readInteger(SubType)) in initializeFileAndStringTables() local
351 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
672 uint32_t SubType, SubSectionSize; in traverseSymbolSection()
673 if (Error E = consume(Data, SubType)) in traverseSymbolSection()
679 SubType &= ~SubsectionIgnoreFlag; in traverseSymbolSection()
695 switch (DebugSubsectionKind(SubType)) { in traverseSymbolSection()
674 uint32_t SubType, SubSectionSize; traverseSymbolSection() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1101 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
1103 if (Error E = Reader.readInteger(SubType)) in initializeFileAndStringTables()
1113 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
1161 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
1162 if (Error E = consume(Data, SubType)) in printCodeViewSymbolSection()
1169 if (SubType & SubsectionIgnoreFlag) { in printCodeViewSymbolSection()
1170 W.printHex("IgnoredSubsectionKind", SubType); in printCodeViewSymbolSection()
1171 SubType &= ~SubsectionIgnoreFlag; in printCodeViewSymbolSection()
1173 W.printEnum("SubSectionType", SubType, ArrayRef(SubSectionTypes)); in printCodeViewSymbolSection()
1198 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection()
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h51 UINT8 SubType; ///< Varies by Type member
/freebsd/stand/efi/libefi/
H A Ddevpath.c584 devpath->SubType == END_INSTANCE_DEVICE_PATH_SUBTYPE) { in efi_devpath_next_instance()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp130 bool validateTypes(Record *SubType, Record *Type, bool IsSourceInst);
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1140 RecTy *SubType = ParseType(); in ParseType() local
1141 if (!SubType) return nullptr; in ParseType()
1147 return ListRecTy::get(SubType); in ParseType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp9934 QualType SubType, bool ConstRHS, in checkTrivialSubobjectCall() argument
9939 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); in checkTrivialSubobjectCall()
9944 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), in checkTrivialSubobjectCall()
9950 SubType.addConst(); in checkTrivialSubobjectCall()
9954 << Kind << SubType.getUnqualifiedType(); in checkTrivialSubobjectCall()
9959 << Kind << SubType.getUnqualifiedType() << llvm::to_underlying(CSM) in checkTrivialSubobjectCall()
9960 << SubType; in checkTrivialSubobjectCall()
9964 << Kind << SubType.getUnqualifiedType() << llvm::to_underlying(CSM); in checkTrivialSubobjectCall()
9967 << Kind << SubType.getUnqualifiedType() << llvm::to_underlying(CSM); in checkTrivialSubobjectCall()
9973 << Kind << SubType in checkTrivialSubobjectCall()
[all...]
H A DSemaTemplate.cpp1343 QualType SubType; in RequireStructuralType() local
1350 SubType = T; in RequireStructuralType()
1361 SubType = T; in RequireStructuralType()
1370 << T << Kind << SubType; in RequireStructuralType()
1371 T = SubType; in RequireStructuralType()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5184 unsigned SubType = 0; in parseFunctionBody() local
5190 SubType = IdxC->getZExtValue(); in parseFunctionBody()
5192 ResTypeID = getContainedTypeID(ResTypeID, SubType); in parseFunctionBody()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp10711 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, in mergeTransparentUnionType() argument
10719 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified); in mergeTransparentUnionType()