Home | History | Annotate | Download | only in SecPeiDxeTimerLibUefiCpu

Lines Matching defs:Ticks

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

45 Stalls the CPU for at least the given number of ticks. It's invoked by
51 @param Delay A period of time to delay in ticks.
60 INT32 Ticks;
88 // Get Ticks from Start to Current.
90 Ticks = StartTick - GetApicTimerCurrentCount ();
92 // Ticks < 0 means Timer wrap-arounds happens.
94 if (Ticks < 0) {
95 Ticks += InitCount;
97 } while ((UINT32)Ticks < Delay);
225 Converts elapsed ticks of performance counter to time in nanoseconds.
227 This function converts the elapsed ticks of running performance counter to
230 @param Ticks The number of elapsed ticks of running performance counter.
238 IN UINT64 Ticks
249 // Ticks
253 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);