Searched refs:SubType (Results 1 - 17 of 17) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp142 QualType SubType = Cast->IgnoreParenImpCasts()->getType();
144 if (!DestType->isRealType() || !SubType->isIntegerType())
173 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType);
174 if (SubType->isSignedIntegerType())
194 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); local
196 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType())
/freebsd-current/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DArchitecture.h28 #define ARCHINFO(Arch, Type, SubType, NumBits) AK_##Arch,
/freebsd-current/stand/efi/include/
H A Defidevp.h37 UINT8 SubType; member in struct:_EFI_DEVICE_PATH
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; \
290 /* Device Logical Unit SubType. */
307 /* DNS Device Path SubType */
318 /* Uniform Resource Identifiers (URI) Device Path SubType */
/freebsd-current/lib/libefivar/
H A Duefi-dputil.c221 Returns the SubType field of a device path node.
223 Returns the SubType field of the device path node specified by Node.
229 @return The SubType field of the device path node specified by Node.
239 return ((const EFI_DEVICE_PATH_PROTOCOL *)(Node))->SubType;
354 END_DEVICE_PATH_TYPE, the SubType field of Node is set to
446 DevicePath->SubType = NodeSubType;
H A Duefi-dplib.h90 UINT8 SubType; member in struct:__anon275
H A Defivar-dp-parse.c604 and SubType.
608 @param SubType The subtype of device path node.
618 IN UINT8 SubType
637 SubType,
3853 DeviceNode->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE;
H A Defivar-dp-format.c2452 (DevicePathSubType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].SubType)
2516 (DevicePathSubType (Node) == mUefiDevicePathLibToTextTable[Index].SubType)
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp339 uint32_t SubType, SubSectionSize; local
341 if (Error E = Reader.readInteger(SubType))
351 switch (DebugSubsectionKind(SubType)) {
672 uint32_t SubType, SubSectionSize; local
673 if (Error E = consume(Data, SubType))
679 SubType &= ~SubsectionIgnoreFlag;
695 switch (DebugSubsectionKind(SubType)) {
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1098 uint32_t SubType, SubSectionSize; local
1100 if (Error E = Reader.readInteger(SubType))
1110 switch (DebugSubsectionKind(SubType)) {
1158 uint32_t SubType, SubSectionSize; local
1159 if (Error E = consume(Data, SubType))
1166 if (SubType & SubsectionIgnoreFlag) {
1167 W.printHex("IgnoredSubsectionKind", SubType);
1168 SubType &= ~SubsectionIgnoreFlag;
1170 W.printEnum("SubSectionType", SubType, ArrayRef(SubSectionTypes));
1195 switch (DebugSubsectionKind(SubType)) {
[all...]
/freebsd-current/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h51 UINT8 SubType; ///< Varies by Type member in struct:__anon9394
72 /// PCI Device Path SubType.
92 /// PCCARD Device Path SubType.
108 /// Memory Mapped Device Path SubType.
132 /// Hardware Vendor Device Path SubType.
153 /// Controller Device Path SubType.
169 /// BMC Device Path SubType.
194 /// ACPI Device Path SubType.
216 /// Expanded ACPI Device Path SubType.
263 /// ACPI _ADR Device Path SubType
[all...]
/freebsd-current/stand/efi/libefi/
H A Ddevpath.c584 devpath->SubType == END_INSTANCE_DEVICE_PATH_SUBTYPE) {
/freebsd-current/contrib/llvm-project/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp130 bool validateTypes(Record *SubType, Record *Type, bool IsSourceInst);
/freebsd-current/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp1134 RecTy *SubType = ParseType();
1135 if (!SubType) return nullptr;
1141 return ListRecTy::get(SubType);
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp10025 QualType SubType, bool ConstRHS,
10029 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
10034 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
10040 SubType.addConst();
10044 << Kind << SubType.getUnqualifiedType();
10049 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
10053 << Kind << SubType.getUnqualifiedType() << CSM;
10056 << Kind << SubType.getUnqualifiedType() << CSM;
10062 << Kind << SubType
[all...]
H A DSemaTemplate.cpp1395 QualType SubType; local
1402 SubType = T;
1413 SubType = T;
1422 << T << Kind << SubType; local
1423 T = SubType;
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5006 unsigned SubType = 0; local
5012 SubType = IdxC->getZExtValue();
5014 ResTypeID = getContainedTypeID(ResTypeID, SubType);
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp10259 /// of T is compatible with SubType, return the merged type, else return
10261 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, argument
10269 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);

Completed in 319 milliseconds