Lines Matching refs:operand
83 * PARAMETERS: operand - 64-bit shift operand
91 acpi_status acpi_ut_short_shift_left(u64 operand, u32 count, u64 *out_result)
97 operand_ovl.full = operand;
120 * PARAMETERS: operand - 64-bit shift operand
128 acpi_status acpi_ut_short_shift_right(u64 operand, u32 count, u64 *out_result)
134 operand_ovl.full = operand;
189 acpi_status acpi_ut_short_shift_left(u64 operand, u32 count, u64 *out_result)
197 *out_result = operand << count;
213 acpi_status acpi_ut_short_shift_right(u64 operand, u32 count, u64 *out_result)
221 *out_result = operand >> count;