/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Builtins.td | 88 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, 95 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, 102 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, 109 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, 116 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, 123 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, 130 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, Const]; 136 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, Const]; 142 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, ConstIgnoringErrnoAndExceptions]; 148 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, ConstIgnoringErrnoAndExceptions]; [all …]
|
H A D | Builtins.h | 73 const char *Type, *Attributes; member 117 return strchr(getRecord(ID).Attributes, 'U') != nullptr; in isPure() 123 return strchr(getRecord(ID).Attributes, 'c') != nullptr; in isConst() 128 return strchr(getRecord(ID).Attributes, 'n') != nullptr; in isNoThrow() 133 return strchr(getRecord(ID).Attributes, 'r') != nullptr; in isNoReturn() 138 return strchr(getRecord(ID).Attributes, 'j') != nullptr; in isReturnsTwice() 144 return strchr(getRecord(ID).Attributes, 'u') != nullptr; in isUnevaluated() 150 return strchr(getRecord(ID).Attributes, 'F') != nullptr; in isLibFunction() 161 return strchr(getRecord(ID).Attributes, 'f') != nullptr; in isPredefinedLibFunction() 168 return strchr(getRecord(ID).Attributes, 'h') != nullptr; in isHeaderDependentFunction() [all …]
|
H A D | BuiltinsBPF.td | 14 let Attributes = [CustomTypeChecking]; 21 let Attributes = [CustomTypeChecking]; 28 let Attributes = [CustomTypeChecking]; 35 let Attributes = [CustomTypeChecking];
|
H A D | BuiltinsBase.td | 9 // Attributes 20 // Standard Attributes 24 // Attributes from the gnu:: namespace 68 // Other Attributes 81 list<Attribute> Attributes = [];
|
H A D | BuiltinsRISCV.td | 21 let Attributes = [NoThrow, Const] in { 140 } // Attributes = [Const, NoThrow] 145 let Features = "zihintntl", Attributes = [CustomTypeChecking] in { 148 } // Features = "zihintntl", Attributes = [CustomTypeChecking]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaObjCProperty.cpp | 180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty() local 181 FD.D.setObjCWeakProperty((Attributes & ObjCPropertyAttribute::kind_weak) != in ActOnProperty() 185 if (!getOwnershipRule(Attributes)) { in ActOnProperty() 186 Attributes |= deducePropertyOwnershipFromType(SemaRef, T); in ActOnProperty() 188 bool isReadWrite = ((Attributes & ObjCPropertyAttribute::kind_readwrite) || in ActOnProperty() 190 !(Attributes & ObjCPropertyAttribute::kind_readonly)); in ActOnProperty() 201 isReadWrite, Attributes, in ActOnProperty() 212 ODS.getSetterNameLoc(), isReadWrite, Attributes, in ActOnProperty() 220 CheckObjCPropertyAttributes(Res, AtLoc, Attributes, in ActOnProperty() 272 makePropertyAttributesAsWritten(unsigned Attributes) { in makePropertyAttributesAsWritten() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | Attributes.cpp | 18 class Attributes { class 20 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anonbfca47420111::Attributes 33 void Attributes::emitTargetIndependentNames(raw_ostream &OS) { in emitTargetIndependentNames() 80 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) { in emitFnAttrCompatCheck() 119 void Attributes::emitAttributeProperties(raw_ostream &OS) { in emitAttributeProperties() 136 void Attributes::run(raw_ostream &OS) { in run() 142 static TableGen::Emitter::OptClass<Attributes> X("gen-attrs",
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrFMA3Info.h | 30 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/contrib/llvm-project/clang/lib/Basic/ |
H A D | Builtins.cpp | 68 (bool)strchr(BuiltinInfo[i].Attributes, 'z') == InStdNamespace) in isBuiltinFunc() 69 return strchr(BuiltinInfo[i].Attributes, 'f') != nullptr; in isBuiltinFunc() 79 if (LangOpts.NoBuiltin && strchr(BuiltinInfo.Attributes, 'f') != nullptr) in builtinIsSupported() 123 if (!LangOpts.CPlusPlus20 && strchr(BuiltinInfo.Attributes, 'G') != nullptr) in builtinIsSupported() 164 const char *WidthPos = ::strchr(getRecord(ID).Attributes, 'V'); in getRequiredVectorWidth() 187 const char *Like = ::strpbrk(getRecord(ID).Attributes, Fmt); in isLike() 214 const char *CalleePos = ::strchr(getRecord(ID).Attributes, 'C'); in performsCallback()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | ELFObjectFile.cpp | 163 ARMAttributeParser Attributes; in getARMFeatures() local 164 if (Error E = getBuildAttributes(Attributes)) { in getARMFeatures() 172 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch); in getARMFeatures() 176 Attr = Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch_profile); in getARMFeatures() 195 Attr = Attributes.getAttributeValue(ARMBuildAttrs::THUMB_ISA_use); in getARMFeatures() 210 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch); in getARMFeatures() 234 Attr = Attributes.getAttributeValue(ARMBuildAttrs::Advanced_SIMD_arch); in getARMFeatures() 253 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch); in getARMFeatures() 272 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use); in getARMFeatures() 374 RISCVAttributeParser Attributes; in getRISCVFeatures() local [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCPseudoProbe.h | 115 uint8_t Attributes; variable 124 : Guid(G), Index(I), Discriminator(D), Attributes(At), Type(T) {} in MCPseudoProbeBase() 134 uint8_t getAttributes() const { return Attributes; } in getAttributes() 152 void setAttributes(uint8_t Attr) { Attributes = Attr; } in setAttributes() 164 uint64_t Attributes, uint32_t Discriminator) in MCPseudoProbe() argument 165 : MCPseudoProbeBase(Guid, Index, Attributes, Type, Discriminator), in MCPseudoProbe() 168 assert(Attributes <= 0xFF && in MCPseudoProbe()
|
/freebsd/stand/efi/include/ |
H A D | efipciio.h | 361 IN UINT64 Attributes 448 IN UINT64 Attributes, 511 IN UINT64 Attributes, 537 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
|
H A D | efigpt.h | 42 UINT64 Attributes; member
|
H A D | efiapi.h | 236 OUT UINT32 *Attributes OPTIONAL, 255 IN UINT32 Attributes, 573 IN UINT32 Attributes 588 UINT32 Attributes; member
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/ |
H A D | tst.TestTransStability1.ksh.out | 4 Minimum Probe Description Attributes 9 Minimum Statement Attributes
|
H A D | tst.TestTransStability2.ksh.out | 4 Minimum Probe Description Attributes 9 Minimum Statement Attributes
|
/freebsd/contrib/llvm-project/llvm/include/ |
H A D | module.install.modulemap | 15 textual header "llvm/IR/Attributes.gen" 16 textual header "llvm/IR/Attributes.inc"
|
/freebsd/sys/contrib/edk2/Include/Uefi/ |
H A D | UefiSpec.h | 672 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 D | UefiGpt.h | 129 UINT64 Attributes; member
|
/freebsd/sys/ufs/ufs/ |
H A D | README.extattr | 2 UFS Extended Attributes Copyright 4 The UFS Extended Attributes implementation is copyright Robert Watson, and 7 About UFS Extended Attributes 24 Using UFS Extended Attributes
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | ModuleMap.h | 233 struct Attributes { struct 251 Attributes() in Attributes() function 263 Attributes Attrs; 385 Module *inferFrameworkModule(DirectoryEntryRef FrameworkDir, Attributes Attrs,
|
/freebsd/crypto/heimdal/lib/asn1/ |
H A D | pkcs12.asn1 | 56 PKCS12-Attributes ::= SET OF PKCS12-Attribute 61 bagAttributes PKCS12-Attributes OPTIONAL
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | SampleProf.h | 525 SampleContext() : State(UnknownContext), Attributes(ContextNone) {} 528 : Func(Name), State(UnknownContext), Attributes(ContextNone) { 533 : Func(Func), State(UnknownContext), Attributes(ContextNone) {} 537 : Attributes(ContextNone) { 548 : Attributes(ContextNone) { 608 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; } 609 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; } 610 uint32_t getAllAttributes() { return Attributes; } 611 void setAllAttributes(uint32_t A) { Attributes = A; } 718 uint32_t Attributes;
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | ModuleSummaryIndex.cpp | 385 struct Attributes { struct 403 void Attributes::add(const Twine &Name, const Twine &Value, in add() 413 void Attributes::addComment(const Twine &Comment) { in addComment() 423 std::string Attributes::getAsString() const { in getAsString() 626 Attributes A; in exportToDot()
|
/freebsd/stand/efi/include/Protocol/ |
H A D | EdidOverride.h | 52 OUT UINT32 *Attributes,
|