Lines Matching refs:operand
57 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_2A_0T_0R() local
72 node = (struct acpi_namespace_node *)operand[0]; in acpi_ex_opcode_2A_0T_0R()
76 value = (u32) operand[1]->integer.value; in acpi_ex_opcode_2A_0T_0R()
124 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_2A_2T_1R() local
155 status = acpi_ut_divide(operand[0]->integer.value, in acpi_ex_opcode_2A_2T_1R()
156 operand[1]->integer.value, in acpi_ex_opcode_2A_2T_1R()
175 status = acpi_ex_store(return_desc2, operand[2], walk_state); in acpi_ex_opcode_2A_2T_1R()
180 status = acpi_ex_store(return_desc1, operand[3], walk_state); in acpi_ex_opcode_2A_2T_1R()
223 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_2A_1T_1R() local
246 operand[0]->integer.value, in acpi_ex_opcode_2A_1T_1R()
247 operand[1]->integer.value); in acpi_ex_opcode_2A_1T_1R()
262 status = acpi_ut_divide(operand[0]->integer.value, in acpi_ex_opcode_2A_1T_1R()
263 operand[1]->integer.value, in acpi_ex_opcode_2A_1T_1R()
270 acpi_ex_do_concatenate(operand[0], operand[1], &return_desc, in acpi_ex_opcode_2A_1T_1R()
290 while ((length < operand[0]->buffer.length) && /* Length of input buffer */ in acpi_ex_opcode_2A_1T_1R()
291 (length < operand[1]->integer.value) && /* Length operand */ in acpi_ex_opcode_2A_1T_1R()
292 (operand[0]->buffer.pointer[length])) { /* Null terminator */ in acpi_ex_opcode_2A_1T_1R()
309 operand[0]->buffer.pointer, length); in acpi_ex_opcode_2A_1T_1R()
317 acpi_ex_concat_template(operand[0], operand[1], in acpi_ex_opcode_2A_1T_1R()
334 index = operand[1]->integer.value; in acpi_ex_opcode_2A_1T_1R()
342 switch ((operand[0])->common.type) { in acpi_ex_opcode_2A_1T_1R()
345 if (index >= operand[0]->string.length) { in acpi_ex_opcode_2A_1T_1R()
346 length = operand[0]->string.length; in acpi_ex_opcode_2A_1T_1R()
353 &(operand[0]->buffer.pointer[index]); in acpi_ex_opcode_2A_1T_1R()
358 if (index >= operand[0]->buffer.length) { in acpi_ex_opcode_2A_1T_1R()
359 length = operand[0]->buffer.length; in acpi_ex_opcode_2A_1T_1R()
366 &(operand[0]->buffer.pointer[index]); in acpi_ex_opcode_2A_1T_1R()
371 if (index >= operand[0]->package.count) { in acpi_ex_opcode_2A_1T_1R()
372 length = operand[0]->package.count; in acpi_ex_opcode_2A_1T_1R()
378 &operand[0]->package.elements[index]; in acpi_ex_opcode_2A_1T_1R()
385 (operand[0])->common.type)); in acpi_ex_opcode_2A_1T_1R()
404 return_desc->reference.object = operand[0]; in acpi_ex_opcode_2A_1T_1R()
405 acpi_ut_add_reference(operand[0]); in acpi_ex_opcode_2A_1T_1R()
409 status = acpi_ex_store(return_desc, operand[2], walk_state); in acpi_ex_opcode_2A_1T_1R()
431 status = acpi_ex_store(return_desc, operand[2], walk_state); in acpi_ex_opcode_2A_1T_1R()
467 union acpi_operand_object **operand = &walk_state->operands[0]; in acpi_ex_opcode_2A_0T_1R() local
490 operand[0]->integer. in acpi_ex_opcode_2A_0T_1R()
492 operand[1]->integer. in acpi_ex_opcode_2A_0T_1R()
499 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0], in acpi_ex_opcode_2A_0T_1R()
500 operand[1], &logical_result); in acpi_ex_opcode_2A_0T_1R()
508 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state); in acpi_ex_opcode_2A_0T_1R()
517 status = acpi_ex_system_wait_event(operand[1], operand[0]); in acpi_ex_opcode_2A_0T_1R()