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

  /src/sys/external/bsd/acpica/dist/compiler/
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...]
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...]
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...]
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...]
  /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/clang/lib/Tooling/Refactoring/Extract/
Extract.cpp 60 static const RefactoringDescriptor Descriptor = {
65 return Descriptor;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
StreamUtil.cpp 63 DbiModuleDescriptor Descriptor;
84 IMD.Descriptor = Modules.getModuleDescriptor(I);
85 uint16_t SN = IMD.Descriptor.getModuleStreamIndex();
174 moduleStream(ModIter->second.Descriptor.getModuleName(), StreamIdx,
ExplainOutputStyle.cpp 376 DbiModuleDescriptor &Descriptor = *Prev;
377 P.formatLine("which contains the descriptor for module {0} ({1}).", Index,
378 Descriptor.getModuleName());
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
RenamingAction.cpp 57 static const RefactoringDescriptor Descriptor = {
62 return Descriptor;
104 static const RefactoringDescriptor Descriptor = {
133 return Descriptor;
  /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/external/apache2/llvm/dist/clang/lib/AST/Interp/
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...]
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...]
  /src/external/gpl3/gcc/dist/gcc/config/vms/
vms-ld.c 389 } Descriptor;
419 Descriptor tabledsc, linkdsc;
  /src/external/gpl3/gcc.old/dist/gcc/config/vms/
vms-ld.c 389 } Descriptor;
419 Descriptor tabledsc, linkdsc;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
DWARFYAML.h 79 llvm::yaml::Hex8 Descriptor;
299 static void mapping(IO &IO, DWARFYAML::ARangeDescriptor &Descriptor);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 244 ContentDescriptor Descriptor;
245 Descriptor.Type =
247 Descriptor.Form = dwarf::Form(DebugLineData.getULEB128(OffsetPtr, &Err));
248 if (Descriptor.Type == dwarf::DW_LNCT_path)
251 ContentTypes->trackContentType(Descriptor.Type);
252 Descriptors.push_back(Descriptor);
283 for (auto Descriptor : *DirDescriptors) {
284 DWARFFormValue Value(Descriptor.Form);
285 switch (Descriptor.Type) {
312 for (auto Descriptor : *FileDescriptors)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
HWAddressSanitizer.cpp 396 // find the descriptor list starting from the program headers. A function
398 // accessing the descriptor list via the note. The dynamic loader needs to
402 // approach of having a global constructor pass a descriptor list pointer to
1395 // Descriptor format (assuming little-endian):
1404 auto *Descriptor =
1406 nullptr, GV->getName() + ".hwasan.descriptor");
1411 ConstantExpr::getPtrToInt(Descriptor, Int64Ty)),
1416 Descriptor->setComdat(NewGV->getComdat());
1417 Descriptor->setInitializer(ConstantStruct::getAnon({GVRelPtr, SizeAndTag}));
1418 Descriptor->setSection("hwasan_globals")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 2976 /// format of a type descriptor is
2985 // Only emit each type's descriptor once.
3013 llvm::Constant *Descriptor = llvm::ConstantStruct::getAnon(Components);
3016 CGM.getModule(), Descriptor->getType(),
3017 /*isConstant=*/true, llvm::GlobalVariable::PrivateLinkage, Descriptor);
3021 // Remember the descriptor for this type.

Completed in 107 milliseconds