HomeSort by: relevance | last modified time | path
    Searched refs:Descriptor (Results 1 - 25 of 127) sorted by relevancy

1 2 3 4 5 6

  /src/sys/external/bsd/acpica/dist/compiler/
aslrestype2e.c 65 * DESCRIPTION: Construct a long "ExtendedIO" descriptor
73 AML_RESOURCE *Descriptor;
92 Descriptor = Rnode->Buffer;
93 Descriptor->ExtAddress64.DescriptorType = ACPI_RESOURCE_NAME_EXTENDED_ADDRESS64;
94 Descriptor->ExtAddress64.ResourceType = ACPI_ADDRESS_TYPE_IO_RANGE;
95 Descriptor->ExtAddress64.RevisionID = AML_RESOURCE_EXTENDED_ADDRESS_REVISION;
97 Descriptor->ExtAddress64.ResourceLength = (UINT16)
109 RsSetFlagBits (&Descriptor->ExtAddress64.Flags, InitializerOp, 0, 1);
114 RsSetFlagBits (&Descriptor->ExtAddress64.Flags, InitializerOp, 2, 0);
121 RsSetFlagBits (&Descriptor->ExtAddress64.Flags, InitializerOp, 3, 0)
    [all...]
aslrestype2d.c 68 * DESCRIPTION: Construct a long "DWordPcc" descriptor
76 AML_RESOURCE *Descriptor;
96 Descriptor = Rnode->Buffer;
97 Descriptor->Address32.DescriptorType = ACPI_RESOURCE_NAME_ADDRESS32;
98 Descriptor->Address32.ResourceType = ACPI_ADDRESS_TYPE_PCC_NUMBER;
101 * Initial descriptor length -- may be enlarged if there are
104 OptionalFields = ((UINT8 *) Descriptor) + sizeof (AML_RESOURCE_ADDRESS32);
105 Descriptor->Address32.ResourceLength = (UINT16)
116 Descriptor->Address32.Flags = 0b1100;
119 Descriptor->Address32.SpecificFlags = 0
    [all...]
aslrestype2q.c 67 * DESCRIPTION: Construct a long "QwordIO" descriptor
75 AML_RESOURCE *Descriptor;
97 Descriptor = Rnode->Buffer;
98 Descriptor->Address64.DescriptorType = ACPI_RESOURCE_NAME_ADDRESS64;
99 Descriptor->Address64.ResourceType = ACPI_ADDRESS_TYPE_IO_RANGE;
102 * Initial descriptor length -- may be enlarged if there are
105 OptionalFields = ((UINT8 *) Descriptor) + sizeof (AML_RESOURCE_ADDRESS64);
106 Descriptor->Address64.ResourceLength = (UINT16)
118 RsSetFlagBits (&Descriptor->Address64.Flags, InitializerOp, 0, 1);
123 RsSetFlagBits (&Descriptor->Address64.Flags, InitializerOp, 2, 0)
    [all...]
aslrestype2w.c 67 * DESCRIPTION: Construct a long "WordIO" descriptor
75 AML_RESOURCE *Descriptor;
97 Descriptor = Rnode->Buffer;
98 Descriptor->Address16.DescriptorType = ACPI_RESOURCE_NAME_ADDRESS16;
99 Descriptor->Address16.ResourceType = ACPI_ADDRESS_TYPE_IO_RANGE;
102 * Initial descriptor length -- may be enlarged if there are
105 OptionalFields = ((UINT8 *) Descriptor) + sizeof (AML_RESOURCE_ADDRESS16);
106 Descriptor->Address16.ResourceLength = (UINT16)
118 RsSetFlagBits (&Descriptor->Address16.Flags, InitializerOp, 0, 1);
123 RsSetFlagBits (&Descriptor->Address16.Flags, InitializerOp, 2, 0)
    [all...]
aslrestype2s.c 93 * descriptor
143 * descriptor
186 * descriptor.
188 * DescriptorOffset - Where vendor data begins in descriptor
324 * DESCRIPTION: Construct a long "GpioInt" descriptor
332 AML_RESOURCE *Descriptor;
369 Descriptor = Rnode->Buffer;
370 Descriptor->Gpio.ResourceLength = DescriptorSize;
371 Descriptor->Gpio.DescriptorType = ACPI_RESOURCE_NAME_GPIO;
372 Descriptor->Gpio.RevisionId = AML_RESOURCE_GPIO_REVISION
    [all...]
aslrestype2.c 67 * DESCRIPTION: Construct a long "Register" descriptor
75 AML_RESOURCE *Descriptor;
86 Descriptor = Rnode->Buffer;
87 Descriptor->GenericReg.DescriptorType = ACPI_RESOURCE_NAME_GENERIC_REGISTER;
88 Descriptor->GenericReg.ResourceLength = 12;
98 Descriptor->GenericReg.AddressSpaceId = (UINT8) InitializerOp->Asl.Value.Integer;
105 Descriptor->GenericReg.BitWidth = (UINT8) InitializerOp->Asl.Value.Integer;
112 Descriptor->GenericReg.BitOffset = (UINT8) InitializerOp->Asl.Value.Integer;
119 Descriptor->GenericReg.Address = InitializerOp->Asl.Value.Integer;
126 Descriptor->GenericReg.AccessSize = (UINT8) InitializerOp->Asl.Value.Integer
    [all...]
aslrestype1.c 71 * DESCRIPTION: Construct a short "EndDependentFn" descriptor
79 AML_RESOURCE *Descriptor;
85 Descriptor = Rnode->Buffer;
86 Descriptor->EndTag.DescriptorType = ACPI_RESOURCE_NAME_END_TAG |
88 Descriptor->EndTag.Checksum = 0;
101 * DESCRIPTION: Construct a short "EndDependentFn" descriptor
109 AML_RESOURCE *Descriptor;
115 Descriptor = Rnode->Buffer;
116 Descriptor->EndDpf.DescriptorType =
130 * DESCRIPTION: Construct a short "Memory24" descriptor
    [all...]
aslrestype1i.c 69 * DESCRIPTION: Construct a short "DMA" descriptor
77 AML_RESOURCE *Descriptor;
90 Descriptor = Rnode->Buffer;
91 Descriptor->Dma.DescriptorType =
102 RsSetFlagBits (&Descriptor->Dma.Flags, InitializerOp, 5, 0);
109 RsSetFlagBits (&Descriptor->Dma.Flags, InitializerOp, 2, 0);
116 RsSetFlagBits (&Descriptor->Dma.Flags, InitializerOp, 0, 0);
176 Descriptor->Dma.DmaChannelMask = DmaChannelMask;
189 * DESCRIPTION: Construct a short "FixedDMA" descriptor
197 AML_RESOURCE *Descriptor;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Descriptor.h 1 //===--- Descriptor.h - Types for the constexpr VM --------------*- C++ -*-===//
23 struct Descriptor;
33 Descriptor *FieldDesc);
38 Descriptor *FieldDesc);
45 char *DstFieldPtr, Descriptor *FieldDesc);
51 struct Descriptor {
71 /// Descriptor of the array element.
72 Descriptor *const ElemDesc = nullptr;
87 /// Allocates a descriptor for a primitive.
88 Descriptor(const DeclTy &D, PrimType Type, bool IsConst, bool IsTemporary
    [all...]
Descriptor.cpp 1 //===--- Descriptor.cpp - Types for the constexpr VM ------------*- C++ -*-===//
9 #include "Descriptor.h"
18 static void ctorTy(Block *, char *Ptr, bool, bool, bool, Descriptor *) {
22 template <typename T> static void dtorTy(Block *, char *Ptr, Descriptor *) {
27 static void moveTy(Block *, char *Src, char *Dst, Descriptor *) {
34 static void ctorArrayTy(Block *, char *Ptr, bool, bool, bool, Descriptor *D) {
41 static void dtorArrayTy(Block *, char *Ptr, Descriptor *D) {
48 static void moveArrayTy(Block *, char *Src, char *Dst, Descriptor *D) {
57 bool IsActive, Descriptor *D) {
81 static void dtorArrayDesc(Block *B, char *Ptr, Descriptor *D)
    [all...]
InterpBlock.h 16 #include "Descriptor.h"
40 Block(const llvm::Optional<unsigned> &DeclID, Descriptor *Desc,
44 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
48 /// Returns the block's descriptor.
49 Descriptor *getDescriptor() const { return Desc; }
83 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead)
104 /// Pointer to the stack slot descriptor.
105 Descriptor *Desc;
108 /// Descriptor for a dead block.
Pointer.cpp 89 Descriptor *Desc = getDeclDesc();
118 Descriptor *Desc = Ptr.getFieldDesc();
137 Descriptor *Desc = getFieldDesc();
149 // Field has its bit in an inline descriptor.
156 Descriptor *Desc = getFieldDesc();
171 // Field has its bit in an inline descriptor.
178 // Field has its bit in an inline descriptor.
Program.h 100 /// Creates a descriptor for a primitive type.
101 Descriptor *createDescriptor(const DeclTy &D, PrimType Type,
108 /// Creates a descriptor for a composite type.
109 Descriptor *createDescriptor(const DeclTy &D, const Type *Ty,
149 /// Descriptor + storage for a global object.
154 /// Create a global descriptor for string literals.
187 /// Creates a new descriptor.
189 Descriptor *allocateDescriptor(Ts &&... Args) {
190 return new (Allocator) Descriptor(std::forward<Ts>(Args)...);
Program.cpp 40 // Create a descriptor for the string.
41 Descriptor *Desc = allocateDescriptor(S, CharType, S->getLength() + 1,
164 // Create a descriptor for the global.
165 Descriptor *Desc;
224 // Helper to get a base descriptor.
225 auto GetBaseDesc = [this](const RecordDecl *BD, Record *BR) -> Descriptor * {
243 if (Descriptor *Desc = GetBaseDesc(BD, BR)) {
256 if (Descriptor *Desc = GetBaseDesc(BD, BR)) {
269 // Reserve space for the field's descriptor and the offset.
276 Descriptor *Desc
    [all...]
Function.h 38 /// Descriptor of the local.
39 Descriptor *Desc;
61 using ParamDescriptor = std::pair<PrimType, Descriptor *>;
79 /// Returns a parameter descriptor.
149 /// Map from byte offset to parameter descriptor.
Record.h 22 /// Structure/Class descriptor.
29 Descriptor *Desc;
36 Descriptor *Desc;
58 /// Returns a base descriptor.
60 /// Returns a virtual base descriptor.
  /src/external/gpl3/gcc/dist/gcc/
hash-table.h 34 the hash table. This descriptor type provides the hash table with
38 Provided a suitable Descriptor class it may be a user-defined,
85 * The descriptor type, (2) above.
92 DEFINING A DESCRIPTOR TYPE
119 You can use these policies by simply deriving the descriptor type
123 in the descriptor class.
138 AN EXAMPLE DESCRIPTOR TYPE
141 the descriptor type as follows.
361 The table stores elements of type Descriptor::value_type and uses
362 the static descriptor functions described at the top of the fil
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
hash-table.h 34 the hash table. This descriptor type provides the hash table with
38 Provided a suitable Descriptor class it may be a user-defined,
85 * The descriptor type, (2) above.
92 DEFINING A DESCRIPTOR TYPE
119 You can use these policies by simply deriving the descriptor type
123 in the descriptor class.
138 AN EXAMPLE DESCRIPTOR TYPE
141 the descriptor type as follows.
361 The table stores elements of type Descriptor::value_type and uses
362 the static descriptor functions described at the top of the fil
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/lli/
ExecutionUtils.cpp 79 jit_descriptor *Descriptor = reinterpret_cast<jit_descriptor *>(Addr);
80 outsv("Version: {0}\n", Descriptor->version);
81 outsv("Action: {0}\n\n", actionFlagToStr(Descriptor->action_flag));
86 for (auto *Entry = Descriptor->first_entry; Entry; Entry = Entry->next_entry)
95 jit_descriptor *Descriptor = reinterpret_cast<jit_descriptor *>(Addr);
96 for (auto *Entry = Descriptor->first_entry; Entry; Entry = Entry->next_entry)
  /src/sys/external/bsd/acpica/dist/utilities/
uttrack.c 649 ACPI_DESCRIPTOR *Descriptor;
681 Descriptor = ACPI_CAST_PTR (
687 "[Not a Descriptor - too small]\n",
688 Descriptor, Element->Size, Element->Module,
695 if (ACPI_GET_DESCRIPTOR_TYPE (Descriptor) !=
699 Descriptor, Element->Size, Element->Module,
700 Element->Line, AcpiUtGetDescriptorName (Descriptor));
707 AcpiUtDumpBuffer ((UINT8 *) Descriptor, Element->Size,
711 /* Validate the descriptor type using Type field and length */
713 DescriptorType = 0; /* Not a valid descriptor type *
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugArangeSet.h 38 /// The size in bytes of a segment descriptor on the target architecture.
43 struct Descriptor {
52 using DescriptorColl = std::vector<Descriptor>;
DWARFDebugPubTable.h 32 dwarf::PubIndexEntryDescriptor Descriptor;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ObjCMissingSuperCallChecker.cpp 108 SelectorDescriptor Descriptor = *I;
109 assert(Descriptor.ArgumentCount <= 1); // No multi-argument selectors yet.
112 IdentifierInfo *II = &Ctx.Idents.get(Descriptor.SelectorName);
114 Selector Sel = Ctx.Selectors.getSelector(Descriptor.ArgumentCount, &II);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 25 // Currently, the following descriptor types are supported:
43 // New rewrite descriptors can be created. Addding a new rewrite descriptor
46 // a) extended the rewrite descriptor kind enumeration
48 // b) implementing the new descriptor
286 for (auto &Descriptor : *DescriptorList)
287 if (!parseEntry(YS, Descriptor, DL))
309 YS.printError(Entry.getValue(), "rewrite descriptor must be a map");
327 yaml::MappingNode *Descriptor,
334 for (auto &Field : *Descriptor) {
343 YS.printError(Field.getKey(), "descriptor key must be a scalar")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugPubTable.cpp 110 GDBIndexEntryLinkageString(E.Descriptor.Linkage);
111 StringRef EntryKind = dwarf::GDBIndexEntryKindString(E.Descriptor.Kind);

Completed in 81 milliseconds

1 2 3 4 5 6