Home | History | Annotate | Download | only in AcpiTimerLib

Lines Matching defs:Ticks

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

143 Stalls the CPU for at least the given number of ticks. It's invoked by
146 @param Delay A period of time to delay in ticks.
155 UINT32 Ticks;
165 Ticks = IoRead32 (Port) + Delay;
172 while (((Ticks - IoRead32 (Port)) & BIT23) == 0) {
296 Converts elapsed ticks of performance counter to time in nanoseconds.
298 This function converts the elapsed ticks of running performance counter to
301 @param Ticks The number of elapsed ticks of running performance counter.
309 IN UINT64 Ticks
320 // Ticks
324 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);