Home | History | Annotate | Download | only in AcpiTimerLib

Lines Matching defs:Ticks

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

82 Stalls the CPU for at least the given number of ticks. It's invoked by
85 @param Delay A period of time to delay in ticks.
93 UINT32 Ticks;
102 Ticks = InternalAcpiGetTimerTick () + Delay;
109 while (((Ticks - InternalAcpiGetTimerTick ()) & BIT23) == 0) {
234 Converts elapsed ticks of performance counter to time in nanoseconds.
236 This function converts the elapsed ticks of running performance counter to
239 @param Ticks The number of elapsed ticks of running performance counter.
247 IN UINT64 Ticks
258 // Ticks
262 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);