Lines Matching refs:OperandOvl
252 UINT64_OVERLAY OperandOvl; in AcpiUtShortShiftLeft() local
258 OperandOvl.Full = Operand; in AcpiUtShortShiftLeft()
262 OperandOvl.Part.Hi = OperandOvl.Part.Lo; in AcpiUtShortShiftLeft()
263 OperandOvl.Part.Lo = 0; in AcpiUtShortShiftLeft()
266 ACPI_SHIFT_LEFT_64_BY_32 (OperandOvl.Part.Hi, in AcpiUtShortShiftLeft()
267 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftLeft()
273 *OutResult = OperandOvl.Full; in AcpiUtShortShiftLeft()
297 UINT64_OVERLAY OperandOvl; in AcpiUtShortShiftRight() local
303 OperandOvl.Full = Operand; in AcpiUtShortShiftRight()
307 OperandOvl.Part.Lo = OperandOvl.Part.Hi; in AcpiUtShortShiftRight()
308 OperandOvl.Part.Hi = 0; in AcpiUtShortShiftRight()
311 ACPI_SHIFT_RIGHT_64_BY_32 (OperandOvl.Part.Hi, in AcpiUtShortShiftRight()
312 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftRight()
318 *OutResult = OperandOvl.Full; in AcpiUtShortShiftRight()