Lines Matching refs:Operand
94 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; in AcpiExOpcode_3A_0T_0R() local
110 (UINT32) Operand[0]->Integer.Value, in AcpiExOpcode_3A_0T_0R()
111 (UINT32) Operand[1]->Integer.Value, in AcpiExOpcode_3A_0T_0R()
112 (UINT32) Operand[2]->Integer.Value)); in AcpiExOpcode_3A_0T_0R()
117 Fatal->Type = (UINT32) Operand[0]->Integer.Value; in AcpiExOpcode_3A_0T_0R()
118 Fatal->Code = (UINT32) Operand[1]->Integer.Value; in AcpiExOpcode_3A_0T_0R()
119 Fatal->Argument = (UINT32) Operand[2]->Integer.Value; in AcpiExOpcode_3A_0T_0R()
174 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0]; in AcpiExOpcode_3A_1T_1R() local
194 (Operand[0])->Common.Type); in AcpiExOpcode_3A_1T_1R()
203 Index = Operand[1]->Integer.Value; in AcpiExOpcode_3A_1T_1R()
204 Length = (ACPI_SIZE) Operand[2]->Integer.Value; in AcpiExOpcode_3A_1T_1R()
210 if (Index >= Operand[0]->String.Length) in AcpiExOpcode_3A_1T_1R()
217 else if ((Index + Length) > Operand[0]->String.Length) in AcpiExOpcode_3A_1T_1R()
220 (ACPI_SIZE) Operand[0]->String.Length - (ACPI_SIZE) Index; in AcpiExOpcode_3A_1T_1R()
225 switch ((Operand[0])->Common.Type) in AcpiExOpcode_3A_1T_1R()
267 Operand[0]->String.Pointer + Index, Length); in AcpiExOpcode_3A_1T_1R()
291 Status = AcpiExStore (ReturnDesc, Operand[3], WalkState); in AcpiExOpcode_3A_1T_1R()