Home | History | Annotate | Download | only in SecPeiDxeTimerLibCpu

Lines Matching refs:Ticks

22   Performs a delay measured as number of ticks.

24 An internal function to perform a delay measured as number of ticks. It's
27 @param Delay The number of ticks to delay.
36 INT64 Ticks;
41 Ticks = (INT64)AsmReadItc () + Delay;
48 while (Ticks - (INT64)AsmReadItc() >= 0);
175 Converts elapsed ticks of performance counter to time in nanoseconds.
177 This function converts the elapsed ticks of running performance counter to
180 @param Ticks The number of elapsed ticks of running performance counter.
188 IN UINT64 Ticks
199 // Ticks
203 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);