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;
544 ParserState->Aml, ParserState->AmlStart);
548 switch (ACPI_GET8 (ParserState->Aml))
553 ParserState->Aml++;
559 ParserState->Aml++;
565 ParserState->Aml++;
571 ParserState->Aml++;
598 ACPI_MOVE_32_TO_32 (&Name, ParserState->Aml);
600 ParserState->Aml += ACPI_NAME_SIZE;
627 AccessType = ACPI_GET8 (ParserState->Aml);
628 ParserState->Aml++;
629 AccessAttribute = ACPI_GET8 (ParserState->Aml);
630 ParserState->Aml++;
639 AccessLength = ACPI_GET8 (ParserState->Aml);
640 ParserState->Aml++;
653 if (ACPI_GET8 (ParserState->Aml) == AML_BUFFER_OP)
655 ParserState->Aml++;
657 PkgEnd = ParserState->Aml;
661 if (ParserState->Aml < PkgEnd)
674 Opcode = ACPI_GET8 (ParserState->Aml);
675 ParserState->Aml++;
681 BufferLength = ACPI_GET8 (ParserState->Aml);
682 ParserState->Aml += 1;
687 BufferLength = ACPI_GET16 (ParserState->Aml);
688 ParserState->Aml += 2;
693 BufferLength = ACPI_GET32 (ParserState->Aml);
694 ParserState->Aml += 4;
706 Arg->Named.Data = ParserState->Aml;
711 ParserState->Aml = PkgEnd;
804 if (ParserState->Aml < ParserState->PkgEnd)
808 while (ParserState->Aml < ParserState->PkgEnd)
829 ParserState->Aml = ParserState->PkgEnd;
835 if (ParserState->Aml < ParserState->PkgEnd)
848 ACPI_PTR_DIFF (ParserState->PkgEnd, ParserState->Aml);
849 Arg->Named.Data = ParserState->Aml;
853 ParserState->Aml = ParserState->PkgEnd;
916 if (ParserState->Aml < ParserState->PkgEnd)