Lines Matching refs:operand
53 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_3A_0T_0R() local
66 (u32)operand[0]->integer.value, in acpi_ex_opcode_3A_0T_0R()
67 (u32)operand[1]->integer.value, in acpi_ex_opcode_3A_0T_0R()
68 (u32)operand[2]->integer.value)); in acpi_ex_opcode_3A_0T_0R()
72 fatal->type = (u32) operand[0]->integer.value; in acpi_ex_opcode_3A_0T_0R()
73 fatal->code = (u32) operand[1]->integer.value; in acpi_ex_opcode_3A_0T_0R()
74 fatal->argument = (u32) operand[2]->integer.value; in acpi_ex_opcode_3A_0T_0R()
127 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_3A_1T_1R() local
143 return_desc = acpi_ut_create_internal_object((operand[0])-> in acpi_ex_opcode_3A_1T_1R()
152 index = operand[1]->integer.value; in acpi_ex_opcode_3A_1T_1R()
153 length = (acpi_size)operand[2]->integer.value; in acpi_ex_opcode_3A_1T_1R()
159 if (index >= operand[0]->string.length) { in acpi_ex_opcode_3A_1T_1R()
165 else if ((index + length) > operand[0]->string.length) { in acpi_ex_opcode_3A_1T_1R()
167 (acpi_size)operand[0]->string.length - in acpi_ex_opcode_3A_1T_1R()
173 switch ((operand[0])->common.type) { in acpi_ex_opcode_3A_1T_1R()
212 operand[0]->string.pointer + index, length); in acpi_ex_opcode_3A_1T_1R()
236 status = acpi_ex_store(return_desc, operand[3], walk_state); in acpi_ex_opcode_3A_1T_1R()