Home
last modified time | relevance | path

Searched refs:Attributes (Results 1 – 25 of 102) sorted by relevance

12345

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.h56 const char *Name, *Type, *Attributes, *HeaderName; member
101 return strchr(getRecord(ID).Attributes, 'U') != nullptr; in isPure()
107 return strchr(getRecord(ID).Attributes, 'c') != nullptr; in isConst()
112 return strchr(getRecord(ID).Attributes, 'n') != nullptr; in isNoThrow()
117 return strchr(getRecord(ID).Attributes, 'r') != nullptr; in isNoReturn()
122 return strchr(getRecord(ID).Attributes, 'j') != nullptr; in isReturnsTwice()
128 return strchr(getRecord(ID).Attributes, 'u') != nullptr; in isUnevaluated()
134 return strchr(getRecord(ID).Attributes, 'F') != nullptr; in isLibFunction()
141 return strchr(getRecord(ID).Attributes, 'f') != nullptr; in isPredefinedLibFunction()
148 return strchr(getRecord(ID).Attributes, 'h') != nullptr; in isHeaderDependentFunction()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty() local
185 if (!getOwnershipRule(Attributes)) { in ActOnProperty()
220 CheckObjCPropertyAttributes(Res, AtLoc, Attributes, in ActOnProperty()
288 if (Attributes & ObjCPropertyAttribute::kind_weak) in makePropertyAttributesAsWritten()
290 if (Attributes & ObjCPropertyAttribute::kind_copy) in makePropertyAttributesAsWritten()
298 if (Attributes & ObjCPropertyAttribute::kind_class) in makePropertyAttributesAsWritten()
496 Attributes = (Attributes & ~OwnershipMask) | ExistingOwnership; in HandlePropertyInClassExtension()
668 if (Attributes & ObjCPropertyAttribute::kind_weak) in CreatePropertyDecl()
671 if (Attributes & ObjCPropertyAttribute::kind_copy) in CreatePropertyDecl()
2656 if ((Attributes & in CheckObjCPropertyAttributes()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.h30 uint16_t Attributes; member
70 bool isIntrinsic() const { return (Attributes & Intrinsic) != 0; } in isIntrinsic()
74 return (Attributes & KMergeMasked) != 0; in isKMergeMasked()
78 bool isKZeroMasked() const { return (Attributes &KZeroMasked) != 0; } in isKZeroMasked()
82 return (Attributes & (KMergeMasked | KZeroMasked)) != 0; in isKMasked()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DAttributes.cpp20 class Attributes { class
22 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anon6c1901760111::Attributes
35 void Attributes::emitTargetIndependentNames(raw_ostream &OS) { in emitTargetIndependentNames()
78 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) { in emitFnAttrCompatCheck()
113 void Attributes::emitAttributeProperties(raw_ostream &OS) { in emitAttributeProperties()
129 void Attributes::emit(raw_ostream &OS) { in emit()
138 Attributes(RK).emit(OS); in EmitAttributes()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCPseudoProbe.h74 uint8_t Attributes; variable
78 uint64_t Attributes) in MCPseudoProbe() argument
80 Attributes(Attributes) { in MCPseudoProbe()
82 assert(Attributes <= 0xFF && in MCPseudoProbe()
94 uint8_t getAttributes() const { return Attributes; } in getAttributes()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp162 ARMAttributeParser Attributes; in getARMFeatures() local
163 if (Error E = getBuildAttributes(Attributes)) { in getARMFeatures()
171 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch); in getARMFeatures()
209 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch); in getARMFeatures()
252 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch); in getARMFeatures()
271 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use); in getARMFeatures()
300 RISCVAttributeParser Attributes; in getRISCVFeatures() local
301 if (Error E = getBuildAttributes(Attributes)) { in getRISCVFeatures()
496 ARMAttributeParser Attributes; in setARMSubArch() local
497 if (Error E = getBuildAttributes(Attributes)) { in setARMSubArch()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPropagateAttributes.cpp78 Attributes[I] = F.getFnAttribute(AttributeNames[I]); in FnProperties()
85 if (Attributes[I] != Other.Attributes[I]) in operator ==()
93 New.Attributes[I] = CallerProps.Attributes[I]; in adjustToCaller()
98 Optional<Attribute> Attributes[NumAttr]; member in __anon81ac680f0111::AMDGPUPropagateAttributes::FnProperties
281 setAttributes(F, NewProps.Attributes); in process()
324 setAttributes(*NewF, NewProps.Attributes); in cloneWithProperties()
H A DAMDGPUAttributor.cpp320 Attributes.insert(Attr); in initialize()
327 Attributes.insert(AttrName); in initialize()
341 if (Attributes.insert(AttrName).second) in updateImpl()
402 if (NeedsQueuePtr || Attributes.count("amdgpu-queue-ptr")) { in updateImpl()
456 for (StringRef AttrName : Attributes) in manifest()
464 return "AMDInfo[" + std::to_string(Attributes.size()) + "]"; in getAsStr()
468 return Attributes; in getAttributes()
475 DenseSet<StringRef> Attributes; member
/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DBuiltins.cpp53 return strchr(BuiltinInfo[i].Attributes, 'f') != nullptr; in isBuiltinFunc()
62 strchr(BuiltinInfo.Attributes, 'f'); in builtinIsSupported()
113 const char *WidthPos = ::strchr(getRecord(ID).Attributes, 'V'); in getRequiredVectorWidth()
136 const char *Like = ::strpbrk(getRecord(ID).Attributes, Fmt); in isLike()
163 const char *CalleePos = ::strchr(getRecord(ID).Attributes, 'C'); in performsCallback()
/freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TestTransStability2.ksh.out4 Minimum Probe Description Attributes
9 Minimum Statement Attributes
H A Dtst.TestTransStability1.ksh.out4 Minimum Probe Description Attributes
9 Minimum Statement Attributes
/freebsd-13.1/stand/efi/include/
H A Defipciio.h362 IN UINT64 Attributes
449 IN UINT64 Attributes,
512 IN UINT64 Attributes,
538 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
H A Defigpt.h43 UINT64 Attributes; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/
H A Dmodule.install.modulemap11 textual header "IR/Attributes.gen"
12 textual header "IR/Attributes.inc"
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMap.h230 struct Attributes { struct
244 Attributes() in Attributes() argument
255 Attributes Attrs;
378 Attributes Attrs, Module *Parent);
/freebsd-13.1/sys/contrib/edk2/Include/Uefi/
H A DUefiSpec.h672 OUT UINT32 *Attributes, OPTIONAL
750 IN UINT32 Attributes,
1337 IN UINT32 Attributes
1377 UINT32 Attributes; member
1771 IN UINT32 Attributes,
2073 UINT32 Attributes; member
H A DUefiGpt.h129 UINT64 Attributes; member
/freebsd-13.1/sys/ufs/ufs/
H A DREADME.extattr3 UFS Extended Attributes Copyright
5 The UFS Extended Attributes implementation is copyright Robert Watson, and
8 About UFS Extended Attributes
25 Using UFS Extended Attributes
/freebsd-13.1/crypto/heimdal/lib/asn1/
H A Dpkcs12.asn156 PKCS12-Attributes ::= SET OF PKCS12-Attribute
61 bagAttributes PKCS12-Attributes OPTIONAL
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h410 SampleContext() : State(UnknownContext), Attributes(ContextNone) {}
412 : Attributes(ContextNone) {
473 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
474 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; }
475 uint32_t getAllAttributes() { return Attributes; }
476 void setAllAttributes(uint32_t A) { Attributes = A; }
532 uint32_t Attributes;
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp367 struct Attributes { struct
385 void Attributes::add(const Twine &Name, const Twine &Value, in add()
395 void Attributes::addComment(const Twine &Comment) { in addComment()
405 std::string Attributes::getAsString() const { in getAsString()
587 Attributes A; in exportToDot()
/freebsd-13.1/stand/efi/include/Protocol/
H A DEdidOverride.h53 OUT UINT32 *Attributes,
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCPseudoProbe.cpp44 assert(Attributes <= 0x7 && in emit()
46 uint8_t PackedType = Type | (Attributes << 4); in emit()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h273 std::vector<AttributeEncoding> Attributes; ///< List of index attributes. member
276 std::vector<AttributeEncoding> Attributes) in Abbrev()
277 : Code(Code), Tag(Tag), Attributes(std::move(Attributes)) {} in Abbrev()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp105 uint32_t &Attributes) { in parseMetadata() argument
113 return !Attrib.getAsInteger(10, Attributes); in parseMetadata()
141 uint64_t &FunctionHash, uint32_t &Attributes) { in ParseLine() argument
149 return parseMetadata(Input.substr(Depth), FunctionHash, Attributes); in ParseLine()
294 uint32_t Attributes = 0; in readImpl() local
297 Attributes)) { in readImpl()
345 if (Attributes) in readImpl()
346 FProfile.getContext().setAllAttributes(Attributes); in readImpl()
1005 auto Attributes = readNumber<uint32_t>(); in readFuncMetadata() local
1006 if (std::error_code EC = Attributes.getError()) in readFuncMetadata()
[all …]

12345