Lines Matching defs:operand
53 union acpi_operand_object **operand = &walk_state->operands[0];
66 (u32)operand[0]->integer.value,
67 (u32)operand[1]->integer.value,
68 (u32)operand[2]->integer.value));
72 fatal->type = (u32) operand[0]->integer.value;
73 fatal->code = (u32) operand[1]->integer.value;
74 fatal->argument = (u32) operand[2]->integer.value;
127 union acpi_operand_object **operand = &walk_state->operands[0];
140 * Create the return object. The Source operand is guaranteed to be
143 return_desc = acpi_ut_create_internal_object((operand[0])->
152 index = operand[1]->integer.value;
153 length = (acpi_size)operand[2]->integer.value;
159 if (index >= operand[0]->string.length) {
165 else if ((index + length) > operand[0]->string.length) {
167 (acpi_size)operand[0]->string.length -
173 switch ((operand[0])->common.type) {
212 operand[0]->string.pointer + index, length);
236 status = acpi_ex_store(return_desc, operand[3], walk_state);