Home | History | Annotate | Download | only in SecPeiDxeTimerLibCpu

Lines Matching refs:Ticks

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

140 Stalls the CPU for at least the given number of ticks. It's invoked by
147 @param Delay A period of time to delay in ticks.
157 INT32 Ticks;
185 // Get Ticks from Start to Current.
187 Ticks = StartTick - InternalX86GetTimerTick (ApicBase);
189 // Ticks < 0 means Timer wrap-arounds happens.
191 if (Ticks < 0) {
192 Ticks += InitCount;
194 } while ((UINT32)Ticks < Delay);
334 Converts elapsed ticks of performance counter to time in nanoseconds.
336 This function converts the elapsed ticks of running performance counter to
339 @param Ticks The number of elapsed ticks of running performance counter.
347 IN UINT64 Ticks
358 // Ticks
362 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);