Home | History | Annotate | Download | only in SecPeiDxeTimerLibUefiCpu

Lines Matching refs:Delay

51   @param  Delay     A period of time to delay in ticks.

57 IN UINT32 Delay
66 // In case Delay is too larger, separate it into several small delay slot.
67 // Devided Delay by half value of Init Count is to avoid Delay close to
70 // Delay and the Init Count.
74 Times = Delay / (InitCount / 2);
75 Delay = Delay % (InitCount / 2);
78 // Get Start Tick and do delay
83 // Wait until time out by Delay value
97 } while ((UINT32)Ticks < Delay);
100 // Update StartTick and Delay for next delay slot
102 StartTick -= (StartTick > Delay) ? Delay : (Delay - InitCount);
103 Delay = InitCount / 2;
112 @param MicroSeconds The minimum number of microseconds to delay.
140 @param NanoSeconds The minimum number of nanoseconds to delay.