Lines Matching refs:operand0
388 acpi_integer operand0, in acpi_ex_do_math_op() argument
396 return (operand0 + operand1); in acpi_ex_do_math_op()
401 return (operand0 & operand1); in acpi_ex_do_math_op()
406 return (~(operand0 & operand1)); in acpi_ex_do_math_op()
411 return (operand0 | operand1); in acpi_ex_do_math_op()
416 return (~(operand0 | operand1)); in acpi_ex_do_math_op()
421 return (operand0 ^ operand1); in acpi_ex_do_math_op()
426 return (operand0 * operand1); in acpi_ex_do_math_op()
431 return (operand0 << operand1); in acpi_ex_do_math_op()
436 return (operand0 >> operand1); in acpi_ex_do_math_op()
441 return (operand0 - operand1); in acpi_ex_do_math_op()
474 acpi_integer operand0, in acpi_ex_do_logical_op() argument
483 if (operand0 && operand1) { in acpi_ex_do_logical_op()
491 if (operand0 == operand1) { in acpi_ex_do_logical_op()
499 if (operand0 > operand1) { in acpi_ex_do_logical_op()
507 if (operand0 < operand1) { in acpi_ex_do_logical_op()
515 if (operand0 || operand1) { in acpi_ex_do_logical_op()