Home | History | Annotate | Download | only in DuetTimerLib

Lines Matching refs:Delay

80   @param  Delay     A period of time to delay in ticks.

86 IN UINT32 Delay
92 Times = Delay >> (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 2);
93 Delay &= (1 << (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 2)) - 1;
98 Ticks = InternalAcpiGetTimerTick () + Delay;
99 Delay = 1 << (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 2);
102 // Delay >= 2^23 (if ACPI provide 24-bit timer) or Delay >= 2^31 (if ACPI
117 @param MicroSeconds The minimum number of microseconds to delay.
150 @param NanoSeconds The minimum number of nanoseconds to delay.