Home | History | Annotate | Download | only in DuetTimerLib

Lines Matching defs:Ticks

75   Stalls the CPU for at least the given number of ticks.

77 Stalls the CPU for at least the given number of ticks. It's invoked by
80 @param Delay A period of time to delay in ticks.
89 UINT32 Ticks;
98 Ticks = InternalAcpiGetTimerTick () + Delay;
106 while (((Ticks - InternalAcpiGetTimerTick ()) & (1 << (gAcpiDesc->PM_TMR_BLK.RegisterBitWidth - 1))) == 0) {
248 Converts elapsed ticks of performance counter to time in nanoseconds.
250 This function converts the elapsed ticks of running performance counter to
253 @param Ticks The number of elapsed ticks of running performance counter.
261 IN UINT64 Ticks
268 // Ticks
272 NanoSeconds = MultU64x32 (DivU64x32Remainder (Ticks, 3579545, &Remainder), 1000000000u);