Lines Matching defs:Aml
278 * PARAMETERS: Aml - Pointer to the raw AML resource template
294 UINT8 *Aml,
319 EndAml = Aml + AmlLength;
323 while (Aml < EndAml)
327 Status = AcpiUtValidateResource (WalkState, Aml, &ResourceIndex);
339 Length = AcpiUtGetDescriptorLength (Aml);
346 Aml, Length, Offset, ResourceIndex, Context);
355 if (AcpiUtGetResourceType (Aml) == ACPI_RESOURCE_NAME_END_TAG)
361 if ((Aml + 1) >= EndAml)
377 *Context = Aml;
385 Aml += Length;
412 * Aml - Pointer to the raw AML resource descriptor
427 void *Aml,
443 ResourceType = ACPI_GET8 (Aml);
487 ResourceLength = AcpiUtGetResourceLength (Aml);
532 AmlResource = ACPI_CAST_PTR (AML_RESOURCE, Aml);
592 * PARAMETERS: Aml - Pointer to the raw AML resource descriptor
604 void *Aml)
613 if (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_LARGE)
617 return (ACPI_GET8 (Aml));
623 return ((UINT8) (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_SMALL_MASK));
632 * PARAMETERS: Aml - Pointer to the raw AML resource descriptor
644 void *Aml)
656 if (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_LARGE)
660 ACPI_MOVE_16_TO_16 (&ResourceLength, ACPI_ADD_PTR (UINT8, Aml, 1));
667 ResourceLength = (UINT16) (ACPI_GET8 (Aml) &
679 * PARAMETERS: Aml - Pointer to the raw AML resource descriptor
689 void *Aml)
696 if (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_LARGE)
711 * PARAMETERS: Aml - Pointer to the raw AML resource descriptor
723 void *Aml)
732 return (AcpiUtGetResourceLength (Aml) +
733 AcpiUtGetResourceHeaderLength (Aml));