Home | History | Annotate | Download | only in AcpiTimerLib

Lines Matching defs:Ticks

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

31 Stalls the CPU for at least the given number of ticks. It's invoked by
34 @param Delay A period of time to delay in ticks.
42 UINT32 Ticks;
51 Ticks = InternalAcpiGetTimerTick () + Delay;
58 while (((Ticks - InternalAcpiGetTimerTick ()) & BIT23) == 0) {
183 Converts elapsed ticks of performance counter to time in nanoseconds.
185 This function converts the elapsed ticks of running performance counter to
188 @param Ticks The number of elapsed ticks of running performance counter.
196 IN UINT64 Ticks
203 // Ticks
207 NanoSeconds = MultU64x32 (DivU64x32Remainder (Ticks, ACPI_TIMER_FREQUENCY, &Remainder), 1000000000u);