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

  /src/sys/external/bsd/acpica/dist/resources/
rslist.c 170 * DESCRIPTION: Convert an AML resource to an internal representation of the
177 UINT8 *Aml,
207 AmlResource = ACPI_CAST_PTR (AML_RESOURCE, Aml);
209 if (AcpiUtGetResourceType (Aml) ==
238 /* Convert the AML byte stream resource to a local resource struct */
245 "Could not convert AML resource (Type 0x%X)", *Aml));
257 AcpiUtGetResourceType (Aml), Length,
292 UINT8 *Aml = OutputBuffer;
303 while (Aml < EndAml
    [all...]
  /src/sys/external/bsd/acpica/dist/parser/
psparse.c 3 * Module Name: psparse - Parser top level AML parse routines
153 * Parse the AML and build an operation tree as most interpreters,
157 * fairly compact by parsing based on a list of AML opcode
177 * PARAMETERS: Opcode - An AML opcode
209 * RETURN: Next AML opcode
211 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
219 UINT8 *Aml;
223 Aml = ParserState->Aml;
    [all...]
psargs.c 3 * Module Name: psargs - Parse AML opcode arguments
184 * RETURN: Decoded package length. On completion, the AML pointer points
196 UINT8 *Aml = ParserState->Aml;
209 ByteCount = (Aml[0] >> 6);
210 ParserState->Aml += ((ACPI_SIZE) ByteCount + 1);
223 PackageLength |= (Aml[ByteCount] << ((ByteCount << 3) - 4));
231 PackageLength |= (Aml[0] & ByteZeroMask);
253 UINT8 *Start = ParserState->Aml;
260 /* Function below updates ParserState->Aml */
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslcodegen.c 3 * Module Name: aslcodegen - AML code generation
198 * DESCRIPTION: Generate AML code. Currently generates the listing file
208 /* Generate the AML output file */
234 * DESCRIPTION: Parse tree walk to generate the AML code.
245 /* Generate the AML for this node */
259 "\nFinal parse tree used for AML output:\n");
319 * DESCRIPTION: Write a buffer of AML data to the AML output file.
330 /* Write the raw data to the AML file */
334 /* 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
237 * DESCRIPTION: Initialize the file dependency tree by scanning the AML.
520 * DESCRIPTION: Takes a given parse op, looks up its Op->Common.Aml field
540 Op->Common.Aml, AcpiGbl_FileTreeRoot);
705 * DESCRIPTION: Look at the aml that the parser state is pointing to,
707 * aml pointer past the comment. Comments are transferred to parse
718 UINT8 *Aml = ParserState->Aml;
719 UINT16 Opcode = (UINT16) ACPI_GET8 (Aml);
735 CvDbgPrint ("comment aml address: %p\n", Aml)
    [all...]
  /src/sys/external/bsd/acpica/dist/disassembler/
dmresrc.c 368 void *Aml;
390 Aml = &ByteData[CurrentByteOffset];
394 ResourceType = AcpiUtGetResourceType (Aml);
395 ResourceLength = AcpiUtGetResourceLength (Aml);
399 Status = AcpiUtValidateResource (NULL, Aml, &ResourceIndex);
410 CurrentByteOffset += AcpiUtGetDescriptorLength (Aml);
448 AcpiDmEndDependentDescriptor (Info, Aml, ResourceLength, Level);
471 Info, Aml, ResourceLength, Level);
505 UINT8 *Aml;
539 Aml = NextOp->Named.Data
    [all...]
dmopcode.c 3 * Module Name: dmopcode - AML disassembler, specific AML opcodes
188 * DESCRIPTION: For AML opcodes that have a target operand, display the full
231 /* We must have a namepath AML opcode */
786 * DESCRIPTION: Disassemble a single AML opcode
801 UINT8 *Aml;
938 * Since there are no special AML opcodes to differentiate these
1055 Aml = Child->Named.Data;
1062 AcpiDmResourceTemplate (Info, Op->Common.Parent, Aml, Length);
1194 * NOTE: There is no actual ElseIf AML opcode. ElseIf is essentially an AS
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
dmrestag.c 195 UINT8 *Aml,
584 * PARAMETERS: Op - Parse Op for the AML opcode
751 * Path is returned in AML (packed) format.
770 AML_RESOURCE *Aml;
787 Aml = ACPI_CAST_PTR (
790 Status = AcpiUtValidateResource (NULL, Aml, &ResourceTableIndex);
802 Tag = AcpiDmGetResourceTag (ResourceBitIndex, Aml, ResourceTableIndex);
841 * end up in the final compiled AML, it's just an appearance issue for the
853 /* Internalize the namepath to AML format */
1165 * NextOp contains the Aml pointer and the Aml lengt
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acstruct.h 186 UINT16 Opcode; /* Current AML opcode */
199 UINT8 *Aml;
202 UINT32 UserBreakpoint; /* User AML breakpoint */
acobject.h 159 * The ACPI_OPERAND_OBJECT is used to pass AML operands from the dispatcher
202 #define AOPOBJ_AML_CONSTANT 0x01 /* Integer is an AML constant */
249 ACPI_COMMON_BUFFER_INFO(char); /* String in AML stream or allocated string */
257 ACPI_COMMON_BUFFER_INFO(UINT8); /* Buffer in AML stream or allocated buffer */
558 UINT8 *Aml; /* Used for deferred resolution of the ref */
581 * have AML code in their declarations (TermArgs) that must be
aclocal.h 163 /* Total number of aml opcodes defined */
192 #define ACPI_MTX_INTERPRETER 0 /* AML Interpreter, main lock */
271 /* Operational modes of the AML interpreter/scanner */
283 * The Namespace Node describes a named object that appears in the AML.
329 #define ANOBJ_ALLOCATED_BUFFER 0x40 /* Method AML buffer is dynamic (InstallMethod) */
891 * AML arguments
911 /* Global handlers for AML Notifies */
981 * AML opcode, name, and argument layout
1037 UINT16 AmlOpcode; /* AML opcode */\
1038 UINT8 *Aml; /* Address of declaration in AML */
    [all...]

Completed in 20 milliseconds