Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp136 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfPrecision() local
138 if (!DestType->isRealType() || !SubType->isIntegerType()) in isLossOfPrecision()
167 unsigned CorrectedSrcWidth = AC.getIntWidth(SubType); in isLossOfPrecision()
168 if (SubType->isSignedIntegerType()) in isLossOfPrecision()
188 QualType SubType = Cast->IgnoreParenImpCasts()->getType(); in isLossOfSign() local
190 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType()) in isLossOfSign()
/freebsd-12.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-12.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-format.c2316 DevicePathSubType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].SubType in UefiDevicePathLibConvertDeviceNodeToText()
2380 DevicePathSubType (Node) == mUefiDevicePathLibToTextTable[Index].SubType in UefiDevicePathLibConvertDevicePathToText()
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()
/freebsd-12.1/stand/efi/boot1/
H A Dboot1.c105 imgpath->SubType != devpath->SubType) in nodes_match()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp928 uint32_t SubType, SubSectionSize; in initializeFileAndStringTables() local
929 error(Reader.readInteger(SubType)); in initializeFileAndStringTables()
936 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
978 uint32_t SubType, SubSectionSize; in printCodeViewSymbolSection() local
979 error(consume(Data, SubType)); in printCodeViewSymbolSection()
983 W.printEnum("SubSectionType", SubType, makeArrayRef(SubSectionTypes)); in printCodeViewSymbolSection()
1006 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection()
/freebsd-12.1/sys/contrib/edk2/Include/Protocol/
H A DDevicePath.h57 UINT8 SubType; ///< Varies by Type member
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DRISCVCompressInstEmitter.cpp111 bool validateTypes(Record *SubType, Record *Type, bool IsSourceInst);
/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DTGParser.cpp815 RecTy *SubType = ParseType(); in ParseType() local
816 if (!SubType) return nullptr; in ParseType()
823 return ListRecTy::get(SubType); in ParseType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp7473 QualType SubType, bool ConstRHS, in checkTrivialSubobjectCall() argument
7477 CXXRecordDecl *SubRD = SubType->getAsCXXRecordDecl(); in checkTrivialSubobjectCall()
7482 if (findTrivialSpecialMember(S, SubRD, CSM, SubType.getCVRQualifiers(), in checkTrivialSubobjectCall()
7488 SubType.addConst(); in checkTrivialSubobjectCall()
7492 << Kind << SubType.getUnqualifiedType(); in checkTrivialSubobjectCall()
7497 << Kind << SubType.getUnqualifiedType() << CSM << SubType; in checkTrivialSubobjectCall()
7501 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
7504 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
7510 << Kind << SubType.getUnqualifiedType() << CSM; in checkTrivialSubobjectCall()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp8459 QualType ASTContext::mergeTransparentUnionType(QualType T, QualType SubType, in mergeTransparentUnionType() argument
8467 QualType MT = mergeTypes(ET, SubType, OfBlockPointer, Unqualified); in mergeTransparentUnionType()