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