HomeSort by: relevance | last modified time | path
    Searched defs:Attributes (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
enumerations.py 21 'Attributes',
32 Attributes = [
  /src/external/gpl3/binutils/dist/gprofng/src/
DefaultHandler.h 30 * org/xml/sax/Attributes.java
32 class Attributes
35 virtual ~Attributes () { };
89 Attributes *attributes) = 0;
111 void dump_startElement (const char *qName, Attributes *attributes);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
DefaultHandler.h 30 * org/xml/sax/Attributes.java
32 class Attributes
35 virtual ~Attributes () { };
89 Attributes *attributes) = 0;
111 void dump_startElement (const char *qName, Attributes *attributes);
  /src/sbin/efi/
bootvar.h 37 uint32_t Attributes;
showvar.c 81 // Boot Option Attributes
329 uint32_t Attributes;
346 info.Attributes = u.bb->Attributes;
367 IS_ACTIVE(info.Attributes) ? '*' : ' ',
389 LOAD_OPTION_BITS, info.Attributes);
  /src/sys/external/bsd/gnu-efi/dist/inc/protocol/
efivar.h 85 UINT32 Attributes;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
Attributes.cpp 1 //===- Attributes.cpp - Generate attributes -------------------------------===//
20 class Attributes {
22 Attributes(RecordKeeper &R) : Records(R) {}
34 void Attributes::emitTargetIndependentNames(raw_ostream &OS) {
64 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) {
99 void Attributes::emit(raw_ostream &OS) {
107 Attributes(RK).emit(OS);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InstrFMA3Info.h 22 /// Each of the groups has either 3 opcodes, Also, each group has an attributes
28 /// This bitfield specifies the attributes associated with the created
30 uint16_t Attributes;
39 /// This bit must be set in the 'Attributes' field of FMA group if such
43 /// This bit must be set in the 'Attributes' field of FMA group if such
49 /// This bit must be set in the 'Attributes' field of FMA group if such
70 bool isIntrinsic() const { return (Attributes & Intrinsic) != 0; }
74 return (Attributes & KMergeMasked) != 0;
78 bool isKZeroMasked() const { return (Attributes &KZeroMasked) != 0; }
82 return (Attributes & (KMergeMasked | KZeroMasked)) != 0
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efishellintf.h 50 /// Attributes for an argument.
53 UINT32 Attributes;
86 /// List of attributes for each argument.
efigpt.h 44 UINT64 Attributes;
49 // EFI Partition Attributes
efipoint.h 81 UINT32 Attributes;
efipciio.h 194 IN UINT64 Attributes
205 IN UINT64 Attributes
314 IN UINT64 Attributes,
332 OUT UINT64 *Attributes
339 IN UINT64 Attributes,
349 IN UINT64 Attributes,
367 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes;
  /src/sys/external/bsd/gnu-efi/dist/lib/
init.c 177 UINT32 Attributes;
182 Status = uefi_call_wrapper(RT->GetVariable, 5, L"EFIDebug", &EfiGlobalVariable, &Attributes, &DataSize, &NewEFIDebug);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCPseudoProbe.h 74 uint8_t Attributes;
78 uint64_t Attributes)
80 Attributes(Attributes) {
82 assert(Attributes <= 0xFF &&
83 "Probe attributes too big to encode, exceeding 2^16");
94 uint8_t getAttributes() const { return Attributes; }
  /src/external/apache2/llvm/dist/llvm/lib/Object/
ELFObjectFile.cpp 162 ARMAttributeParser Attributes;
163 if (Error E = getBuildAttributes(Attributes)) {
171 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch);
175 Attr = Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch_profile);
194 Attr = Attributes.getAttributeValue(ARMBuildAttrs::THUMB_ISA_use);
209 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch);
233 Attr = Attributes.getAttributeValue(ARMBuildAttrs::Advanced_SIMD_arch);
252 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch);
271 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use);
300 RISCVAttributeParser Attributes;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Builtins.h 55 const char *Name, *Type, *Attributes, *HeaderName;
100 return strchr(getRecord(ID).Attributes, 'U') != nullptr;
106 return strchr(getRecord(ID).Attributes, 'c') != nullptr;
111 return strchr(getRecord(ID).Attributes, 'n') != nullptr;
116 return strchr(getRecord(ID).Attributes, 'r') != nullptr;
121 return strchr(getRecord(ID).Attributes, 'j') != nullptr;
127 return strchr(getRecord(ID).Attributes, 'u') != nullptr;
133 return strchr(getRecord(ID).Attributes, 'F') != nullptr;
140 return strchr(getRecord(ID).Attributes, 'f') != nullptr;
147 return strchr(getRecord(ID).Attributes, 'h') != nullptr
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPropagateAttributes.cpp 10 /// \brief This pass propagates attributes from kernels to the non-entry
19 /// simply propagates attributes. A module pass clones functions if there are
39 #define DEBUG_TYPE "amdgpu-propagate-attributes"
56 // Attributes to propagate.
78 Attributes[I] = F.getFnAttribute(AttributeNames[I]);
85 if (Attributes[I] != Other.Attributes[I])
93 New.Attributes[I] = CallerProps.Attributes[I];
98 Optional<Attribute> Attributes[NumAttr]
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
ModuleMap.h 229 /// The set of attributes that can be attached to a module.
230 struct Attributes {
244 Attributes()
254 /// The attributes to use for inferred modules.
255 Attributes Attrs;
378 Attributes Attrs, Module *Parent);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 46 // Stack of data-sharing attributes for variables
55 /// Default data sharing attributes, which can be applied to directive.
64 /// clauses and their data-sharing attributes.
100 OpenMPClauseKind Attributes = OMPC_unknown;
205 /// Stack of used declaration and their data-sharing attributes.
384 "Data-sharing attributes stack is empty!");
564 /// Returns data sharing attributes from top of the stack for the
567 /// Returns data-sharing attributes for the specified declaration.
569 /// Returns data-sharing attributes for the specified declaration.
571 /// Checks if the specified variables has data-sharing attributes whic
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h 226 /// different index attributes (DW_IDX_???) attached to it.
273 std::vector<AttributeEncoding> Attributes; ///< List of index attributes.
276 std::vector<AttributeEncoding> Attributes)
277 : Code(Code), Tag(Tag), Attributes(std::move(Attributes)) {}
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 426 /// Emit location lists for \p Unit and update attributes to point to the new
431 const auto &Attributes = Unit.getLocationAttributes();
433 if (Attributes.empty())
451 for (const auto &Attr : Attributes) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 33 llvm::yaml::Hex64 Value; // Some DWARF5 attributes have values
40 std::vector<AttributeAbbrev> Attributes;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFVerifier.cpp 170 for (auto AttrValue : Die.attributes()) {
263 for (auto Attribute : AbbrDecl.attributes()) {
267 << AttributeString(Attribute.Attr) << " attributes.\n";
1155 // A list of known index attributes and their expected form classes.
1208 SmallSet<unsigned, 5> Attributes;
1209 for (const auto &AttrEnc : Abbrev.Attributes) {
1210 if (!Attributes.insert(AttrEnc.Index).second) {
1212 "multiple {2} attributes.\n",
1220 if (NI.getCUCount() > 1 && !Attributes.count(dwarf::DW_IDX_compile_unit)) {
1227 if (!Attributes.count(dwarf::DW_IDX_die_offset))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp 92 /// !Attributes: 1
95 uint32_t &Attributes) {
101 if (Input.startswith("!Attributes:")) {
102 StringRef Attrib = Input.substr(strlen("!Attributes:")).trim();
103 return !Attrib.getAsInteger(10, Attributes);
131 uint64_t &FunctionHash, uint32_t &Attributes) {
139 return parseMetadata(Input.substr(Depth), FunctionHash, Attributes);
283 uint32_t Attributes = 0;
286 Attributes)) {
330 if (Attributes)
    [all...]
  /src/external/apache2/llvm/include/
Makefile 125 TABLEGEN_SRC= Attributes.td Intrinsics.td Options.td ACC.td OMP.td
127 TABLEGEN_OUTPUT.Attributes.td= \
128 llvm/IR/Attributes.inc|-gen-attrs

Completed in 45 milliseconds

1 2