Lines Matching refs:Aml

294     UINT8                   *Aml,  in AcpiUtWalkAmlResources()  argument
319 EndAml = Aml + AmlLength; in AcpiUtWalkAmlResources()
323 while (Aml < EndAml) in AcpiUtWalkAmlResources()
327 Status = AcpiUtValidateResource (WalkState, Aml, &ResourceIndex); in AcpiUtWalkAmlResources()
339 Length = AcpiUtGetDescriptorLength (Aml); in AcpiUtWalkAmlResources()
346 Aml, Length, Offset, ResourceIndex, Context); in AcpiUtWalkAmlResources()
355 if (AcpiUtGetResourceType (Aml) == ACPI_RESOURCE_NAME_END_TAG) in AcpiUtWalkAmlResources()
361 if ((Aml + 1) >= EndAml) in AcpiUtWalkAmlResources()
377 *Context = Aml; in AcpiUtWalkAmlResources()
385 Aml += Length; in AcpiUtWalkAmlResources()
427 void *Aml, in AcpiUtValidateResource() argument
443 ResourceType = ACPI_GET8 (Aml); in AcpiUtValidateResource()
487 ResourceLength = AcpiUtGetResourceLength (Aml); in AcpiUtValidateResource()
532 AmlResource = ACPI_CAST_PTR (AML_RESOURCE, Aml); in AcpiUtValidateResource()
599 void *Aml) in AcpiUtGetResourceType() argument
608 if (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_LARGE) in AcpiUtGetResourceType()
612 return (ACPI_GET8 (Aml)); in AcpiUtGetResourceType()
618 return ((UINT8) (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_SMALL_MASK)); in AcpiUtGetResourceType()
639 void *Aml) in AcpiUtGetResourceLength() argument
651 if (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_LARGE) in AcpiUtGetResourceLength()
655 ACPI_MOVE_16_TO_16 (&ResourceLength, ACPI_ADD_PTR (UINT8, Aml, 1)); in AcpiUtGetResourceLength()
662 ResourceLength = (UINT16) (ACPI_GET8 (Aml) & in AcpiUtGetResourceLength()
684 void *Aml) in AcpiUtGetResourceHeaderLength() argument
691 if (ACPI_GET8 (Aml) & ACPI_RESOURCE_NAME_LARGE) in AcpiUtGetResourceHeaderLength()
718 void *Aml) in AcpiUtGetDescriptorLength() argument
727 return (AcpiUtGetResourceLength (Aml) + in AcpiUtGetDescriptorLength()
728 AcpiUtGetResourceHeaderLength (Aml)); in AcpiUtGetDescriptorLength()