Lines Matching refs:operand
87 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_3A_0T_0R() local
99 (u32) operand[0]->integer.value, in acpi_ex_opcode_3A_0T_0R()
100 (u32) operand[1]->integer.value, in acpi_ex_opcode_3A_0T_0R()
101 (u32) operand[2]->integer.value)); in acpi_ex_opcode_3A_0T_0R()
105 fatal->type = (u32) operand[0]->integer.value; in acpi_ex_opcode_3A_0T_0R()
106 fatal->code = (u32) operand[1]->integer.value; in acpi_ex_opcode_3A_0T_0R()
107 fatal->argument = (u32) operand[2]->integer.value; in acpi_ex_opcode_3A_0T_0R()
157 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_3A_1T_1R() local
173 return_desc = acpi_ut_create_internal_object((operand[0])-> in acpi_ex_opcode_3A_1T_1R()
182 index = operand[1]->integer.value; in acpi_ex_opcode_3A_1T_1R()
183 length = (acpi_size) operand[2]->integer.value; in acpi_ex_opcode_3A_1T_1R()
189 if (index >= operand[0]->string.length) { in acpi_ex_opcode_3A_1T_1R()
195 else if ((index + length) > operand[0]->string.length) { in acpi_ex_opcode_3A_1T_1R()
196 length = (acpi_size) operand[0]->string.length - in acpi_ex_opcode_3A_1T_1R()
202 switch ((operand[0])->common.type) { in acpi_ex_opcode_3A_1T_1R()
240 memcpy(buffer, operand[0]->string.pointer + index, in acpi_ex_opcode_3A_1T_1R()
264 status = acpi_ex_store(return_desc, operand[3], walk_state); in acpi_ex_opcode_3A_1T_1R()