Lines Matching refs:Aml

83     UINT8                   *Aml = ParserState->Aml;
96 ByteCount = (Aml[0] >> 6);
97 ParserState->Aml += ((ACPI_SIZE) ByteCount + 1);
110 PackageLength |= (Aml[ByteCount] << ((ByteCount << 3) - 4));
118 PackageLength |= (Aml[0] & ByteZeroMask);
140 UINT8 *Start = ParserState->Aml;
147 /* Function below updates ParserState->Aml */
174 UINT8 *Start = ParserState->Aml;
175 UINT8 *End = ParserState->Aml;
226 ParserState->Aml = End;
264 UINT8 *Start = ParserState->Aml;
307 WalkState->ParserState.Aml = Start;
431 UINT8 *Aml = ParserState->Aml;
444 Arg->Common.Value.Integer = (UINT64) *Aml;
453 ACPI_MOVE_16_TO_64 (&Arg->Common.Value.Integer, Aml);
462 ACPI_MOVE_32_TO_64 (&Arg->Common.Value.Integer, Aml);
471 ACPI_MOVE_64_TO_64 (&Arg->Common.Value.Integer, Aml);
480 Arg->Common.Value.String = ACPI_CAST_PTR (char, Aml);
485 while (Aml[Length])
506 ParserState->Aml += Length;
527 UINT8 *Aml;
543 Aml = ParserState->Aml;
547 switch (ACPI_GET8 (ParserState->Aml))
552 ParserState->Aml++;
558 ParserState->Aml++;
564 ParserState->Aml++;
570 ParserState->Aml++;
581 Field = AcpiPsAllocOp (Opcode, Aml);
595 ACPI_MOVE_32_TO_32 (&Name, ParserState->Aml);
597 ParserState->Aml += ACPI_NAME_SIZE;
624 AccessType = ACPI_GET8 (ParserState->Aml);
625 ParserState->Aml++;
626 AccessAttribute = ACPI_GET8 (ParserState->Aml);
627 ParserState->Aml++;
636 AccessLength = ACPI_GET8 (ParserState->Aml);
637 ParserState->Aml++;
650 Aml = ParserState->Aml;
651 if (ACPI_GET8 (ParserState->Aml) == AML_BUFFER_OP)
653 ParserState->Aml++;
655 PkgEnd = ParserState->Aml;
659 if (ParserState->Aml < PkgEnd)
663 Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP, Aml);
672 Opcode = ACPI_GET8 (ParserState->Aml);
673 ParserState->Aml++;
679 BufferLength = ACPI_GET8 (ParserState->Aml);
680 ParserState->Aml += 1;
685 BufferLength = ACPI_GET16 (ParserState->Aml);
686 ParserState->Aml += 2;
691 BufferLength = ACPI_GET32 (ParserState->Aml);
692 ParserState->Aml += 4;
704 Arg->Named.Data = ParserState->Aml;
709 ParserState->Aml = PkgEnd;
713 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, Aml);
785 Arg = AcpiPsAllocOp (AML_BYTE_OP, ParserState->Aml);
803 if (ParserState->Aml < ParserState->PkgEnd)
807 while (ParserState->Aml < ParserState->PkgEnd)
828 ParserState->Aml = ParserState->PkgEnd;
834 if (ParserState->Aml < ParserState->PkgEnd)
839 ParserState->Aml);
848 ACPI_PTR_DIFF (ParserState->PkgEnd, ParserState->Aml);
849 Arg->Named.Data = ParserState->Aml;
853 ParserState->Aml = ParserState->PkgEnd;
870 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, ParserState->Aml);
919 if (ParserState->Aml < ParserState->PkgEnd)