Home | History | Annotate | Download | only in SecPeiDxeTimerLibCpu

Lines Matching refs:Delay

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

154 IN UINT32 Delay
163 // In case Delay is too larger, separate it into several small delay slot.
164 // Devided Delay by half value of Init Count is to avoid Delay close to
167 // Delay and the Init Count.
171 Times = Delay / (InitCount / 2);
172 Delay = Delay % (InitCount / 2);
175 // Get Start Tick and do delay
180 // Wait until time out by Delay value
194 } while ((UINT32)Ticks < Delay);
197 // Update StartTick and Delay for next delay slot
199 StartTick -= (StartTick > Delay) ? Delay : (Delay - InitCount);
200 Delay = InitCount / 2;
209 @param MicroSeconds The minimum number of microseconds to delay.
241 @param NanoSeconds The minimum number of nanoseconds to delay.