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

/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp135 QualType SubType = Cast->IgnoreParenImpCasts()->getType();
137 if (!DestType->isRealType() || !SubType->isIntegerType())
166 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType);
167 if (SubType->isSignedIntegerType())
187 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); local
189 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType())
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/TextAPI/MachO/
H A DArchitecture.h25 #define ARCHINFO(Arch, Type, SubType) AK_##Arch,
/freebsd-12-stable/stand/efi/include/
H A Defidevp.h38 UINT8 SubType; member in struct:_EFI_DEVICE_PATH
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; \
291 /* Device Logical Unit SubType. */
308 /* DNS Device Path SubType */
319 /* Uniform Resource Identifiers (URI) Device Path SubType */
/freebsd-12-stable/lib/libefivar/
H A Duefi-dputil.c223 Returns the SubType field of a device path node.
225 Returns the SubType field of the device path node specified by Node.
231 @return The SubType field of the device path node specified by Node.
241 return ((const EFI_DEVICE_PATH_PROTOCOL *)(Node))->SubType;
356 END_DEVICE_PATH_TYPE, the SubType field of Node is set to
448 DevicePath->SubType = NodeSubType;
H A Duefi-dplib.h100 UINT8 SubType; member in struct:__anon8608
H A Defivar-dp-format.c2316 DevicePathSubType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].SubType
2380 DevicePathSubType (Node) == mUefiDevicePathLibToTextTable[Index].SubType
H A Defivar-dp-parse.c604 and SubType.
608 @param SubType The subtype of device path node.
618 IN UINT8 SubType
637 SubType,
3680 DeviceNode->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp911 uint32_t SubType, SubSectionSize; local
913 if (Error E = Reader.readInteger(SubType))
923 switch (DebugSubsectionKind(SubType)) {
971 uint32_t SubType, SubSectionSize; local
972 if (Error E = consume(Data, SubType))
979 if (SubType & SubsectionIgnoreFlag) {
980 W.printHex("IgnoredSubsectionKind", SubType);
981 SubType &= ~SubsectionIgnoreFlag;
983 W.printEnum("SubSectionType", SubType, makeArrayRef(SubSectionTypes));
1008 switch (DebugSubsectionKind(SubType)) {
[all...]
/freebsd-12-stable/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h57 UINT8 SubType; ///< Varies by Type member in struct:__anon10559
78 /// PCI Device Path SubType.
98 /// PCCARD Device Path SubType.
114 /// Memory Mapped Device Path SubType.
138 /// Hardware Vendor Device Path SubType.
159 /// Controller Device Path SubType.
175 /// BMC Device Path SubType.
200 /// ACPI Device Path SubType.
222 /// Expanded ACPI Device Path SubType.
269 /// ACPI _ADR Device Path SubType
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVCompressInstEmitter.cpp119 bool validateTypes(Record *SubType, Record *Type, bool IsSourceInst);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGParser.cpp834 RecTy *SubType = ParseType(); local
835 if (!SubType) return nullptr;
842 return ListRecTy::get(SubType);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp9077 QualType SubType, bool ConstRHS,
9081 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl();
9086 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(),
9092 SubType.addConst();
9096 << Kind << SubType.getUnqualifiedType();
9101 << Kind << SubType.getUnqualifiedType() << CSM << SubType;
9105 << Kind << SubType.getUnqualifiedType() << CSM;
9108 << Kind << SubType.getUnqualifiedType() << CSM;
9114 << Kind << SubType
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp8766 /// of T is compatible with SubType, return the merged type, else return
8768 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, argument
8776 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified);

Completed in 393 milliseconds