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

  /src/sys/external/bsd/acpica/dist/resources/
rslist.c 62 * DESCRIPTION: Convert an AML resource to an internal representation of the
69 UINT8 *Aml,
99 AmlResource = ACPI_CAST_PTR (AML_RESOURCE, Aml);
101 if (AcpiUtGetResourceType (Aml) ==
130 /* Convert the AML byte stream resource to a local resource struct */
137 "Could not convert AML resource (Type 0x%X)", *Aml));
149 AcpiUtGetResourceType (Aml), Length,
184 UINT8 *Aml = OutputBuffer;
195 while (Aml < EndAml
    [all...]
rsmisc.c 66 * Aml - Where the AML descriptor is returned
71 * DESCRIPTION: Convert an external AML resource descriptor to the corresponding
79 AML_RESOURCE *Aml,
111 AmlResourceLength = AcpiUtGetResourceLength (Aml);
123 * Source is the external AML byte stream buffer,
126 Source = ACPI_ADD_PTR (void, Aml, Info->AmlOffset);
200 Target = ACPI_ADD_PTR (void, Aml, Info->Value);
221 Target = ACPI_ADD_PTR (void, Aml, (Info->Value + 2));
226 Target = ACPI_ADD_PTR (void, Aml, Info->Value)
    [all...]
  /src/sys/external/bsd/acpica/dist/parser/
psparse.c 3 * Module Name: psparse - Parser top level AML parse routines
45 * Parse the AML and build an operation tree as most interpreters,
49 * fairly compact by parsing based on a list of AML opcode
69 * PARAMETERS: Opcode - An AML opcode
101 * RETURN: Next AML opcode
103 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
111 UINT8 *Aml;
115 Aml = ParserState->Aml;
    [all...]
psargs.c 3 * Module Name: psargs - Parse AML opcode arguments
76 * RETURN: Decoded package length. On completion, the AML pointer points
88 UINT8 *Aml = ParserState->Aml;
101 ByteCount = (Aml[0] >> 6);
102 ParserState->Aml += ((ACPI_SIZE) ByteCount + 1);
115 PackageLength |= (Aml[ByteCount] << ((ByteCount << 3) - 4));
123 PackageLength |= (Aml[0] & ByteZeroMask);
145 UINT8 *Start = ParserState->Aml;
152 /* Function below updates ParserState->Aml */
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcodegen.c 3 * Module Name: aslcodegen - AML code generation
90 * DESCRIPTION: Generate AML code. Currently generates the listing file
100 /* Generate the AML output file */
126 * DESCRIPTION: Parse tree walk to generate the AML code.
137 /* Generate the AML for this node */
151 "\nFinal parse tree used for AML output:\n");
211 * DESCRIPTION: Write a buffer of AML data to the AML output file.
222 /* Write the raw data to the AML file */
226 /* Update the final AML length for this node (used for listings) *
    [all...]
cvparser.c 3 * Module Name: cvparser - Converter functions that are called from the AML
129 * DESCRIPTION: Initialize the file dependency tree by scanning the AML.
412 * DESCRIPTION: Takes a given parse op, looks up its Op->Common.Aml field
432 Op->Common.Aml, AcpiGbl_FileTreeRoot);
597 * DESCRIPTION: Look at the aml that the parser state is pointing to,
599 * aml pointer past the comment. Comments are transferred to parse
610 UINT8 *Aml = ParserState->Aml;
611 UINT16 Opcode = (UINT16) ACPI_GET8 (Aml);
627 CvDbgPrint ("comment aml address: %p\n", Aml)
    [all...]
  /src/sys/external/bsd/acpica/dist/disassembler/
dmresrc.c 260 void *Aml;
282 Aml = &ByteData[CurrentByteOffset];
286 ResourceType = AcpiUtGetResourceType (Aml);
287 ResourceLength = AcpiUtGetResourceLength (Aml);
291 Status = AcpiUtValidateResource (NULL, Aml, &ResourceIndex);
302 CurrentByteOffset += AcpiUtGetDescriptorLength (Aml);
340 AcpiDmEndDependentDescriptor (Info, Aml, ResourceLength, Level);
363 Info, Aml, ResourceLength, Level);
397 UINT8 *Aml;
431 Aml = NextOp->Named.Data
    [all...]
dmopcode.c 3 * Module Name: dmopcode - AML disassembler, specific AML opcodes
80 * DESCRIPTION: For AML opcodes that have a target operand, display the full
123 /* We must have a namepath AML opcode */
678 * DESCRIPTION: Disassemble a single AML opcode
693 UINT8 *Aml;
830 * Since there are no special AML opcodes to differentiate these
947 Aml = Child->Named.Data;
954 AcpiDmResourceTemplate (Info, Op->Common.Parent, Aml, Length);
1086 * NOTE: There is no actual ElseIf AML opcode. ElseIf is essentially an AS
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
dmrestag.c 87 UINT8 *Aml,
476 * PARAMETERS: Op - Parse Op for the AML opcode
643 * Path is returned in AML (packed) format.
662 AML_RESOURCE *Aml;
679 Aml = ACPI_CAST_PTR (
682 Status = AcpiUtValidateResource (NULL, Aml, &ResourceTableIndex);
694 Tag = AcpiDmGetResourceTag (ResourceBitIndex, Aml, ResourceTableIndex);
733 * end up in the final compiled AML, it's just an appearance issue for the
745 /* Internalize the namepath to AML format */
1057 * NextOp contains the Aml pointer and the Aml lengt
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acstruct.h 78 UINT16 Opcode; /* Current AML opcode */
91 UINT8 *Aml;
94 UINT32 UserBreakpoint; /* User AML breakpoint */
acobject.h 51 * The ACPI_OPERAND_OBJECT is used to pass AML operands from the dispatcher
94 #define AOPOBJ_AML_CONSTANT 0x01 /* Integer is an AML constant */
141 ACPI_COMMON_BUFFER_INFO(char); /* String in AML stream or allocated string */
149 ACPI_COMMON_BUFFER_INFO(UINT8); /* Buffer in AML stream or allocated buffer */
450 UINT8 *Aml; /* Used for deferred resolution of the ref */
473 * have AML code in their declarations (TermArgs) that must be
aclocal.h 55 /* Total number of aml opcodes defined */
84 #define ACPI_MTX_INTERPRETER 0 /* AML Interpreter, main lock */
163 /* Operational modes of the AML interpreter/scanner */
175 * The Namespace Node describes a named object that appears in the AML.
221 #define ANOBJ_ALLOCATED_BUFFER 0x40 /* Method AML buffer is dynamic (InstallMethod) */
783 * AML arguments
803 /* Global handlers for AML Notifies */
873 * AML opcode, name, and argument layout
929 UINT16 AmlOpcode; /* AML opcode */\
930 UINT8 *Aml; /* Address of declaration in AML */
    [all...]

Completed in 24 milliseconds