Lines Matching refs:Count
249 UINT32 Count, in AcpiUtShortShiftLeft() argument
260 if ((Count & 63) >= 32) in AcpiUtShortShiftLeft()
264 Count = (Count & 63) - 32; in AcpiUtShortShiftLeft()
267 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftLeft()
294 UINT32 Count, in AcpiUtShortShiftRight() argument
305 if ((Count & 63) >= 32) in AcpiUtShortShiftRight()
309 Count = (Count & 63) - 32; in AcpiUtShortShiftRight()
312 OperandOvl.Part.Lo, Count); in AcpiUtShortShiftRight()
368 UINT32 Count, in AcpiUtShortShiftLeft() argument
379 *OutResult = Operand << Count; in AcpiUtShortShiftLeft()
398 UINT32 Count, in AcpiUtShortShiftRight() argument
409 *OutResult = Operand >> Count; in AcpiUtShortShiftRight()