Home | History | Annotate | Download | only in IntelPchAcpiTimerLib

Lines Matching defs:Ticks

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

81 Stalls the CPU for at least the given number of ticks. It's invoked by
84 @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
254 // Ticks
258 NanoSeconds = MultU64x32 (DivU64x32Remainder (Ticks, V_PCH_ACPI_PM1_TMR_FREQUENCY, &Remainder), 1000000000u);