Searched defs:Ticks (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SecPeiDxeTimerLibCpu/
H A DIpfTimerLib.c36 INT64 Ticks; local
41 Ticks = (INT64)AsmReadItc () + Delay;
48 while (Ticks - (INT64)AsmReadItc() >= 0);
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);
H A DX86TimerLib.c107 INT32 Ticks; local
113 Ticks = InternalX86GetTimerTick (ApicBase) - Delay;
121 while (((UINT32)(InternalX86GetTimerTick (ApicBase) - Ticks) & PowerOfTwoCounter) == 0) {
265 @param Ticks The number of elapsed ticks of running performance counter.
273 IN UINT64 Ticks
284 // Ticks
288 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Library/SecPeiDxeTimerLibUefiCpu/
H A DIpfTimerLib.c36 INT64 Ticks; local
41 Ticks = (INT64)AsmReadItc () + Delay;
48 while (Ticks - (INT64)AsmReadItc() >= 0);
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);
H A DX86TimerLib.c57 INT32 Ticks; local
63 Ticks = GetApicTimerCurrentCount () - Delay;
71 while (((UINT32)(GetApicTimerCurrentCount () - Ticks) & PowerOfTwoCounter) == 0) {
203 @param Ticks The number of elapsed ticks of running performance counter.
211 IN UINT64 Ticks
222 // Ticks
226 NanoSeconds = MultU64x32 (DivU64x64Remainder (Ticks, Frequency, &Remainder), 1000000000u);
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/AcpiTimerLib/
H A DAcpiTimerLib.c103 UINT32 Ticks; local
112 Ticks = InternalAcpiGetTimerTick () + Delay;
119 while (((Ticks - InternalAcpiGetTimerTick ()) & BIT23) == 0) {
249 @param Ticks The number of elapsed ticks of running performance counter.
257 IN UINT64 Ticks
264 // Ticks
268 NanoSeconds = MultU64x32 (DivU64x32Remainder (Ticks, ACPI_TIMER_FREQUENCY, &Remainder), 1000000000u);
/vbox/src/VBox/Devices/EFI/Firmware/PerformancePkg/Library/TscTimerLib/
H A DTscTimerLibShare.c55 UINT32 Ticks; local
72 Ticks = IoRead32 (TimerAddr) + (3579); // Set Ticks to 1ms in the future
77 // When the current ACPI timer value is greater than 'Ticks', the while loop will exit.
79 while (((Ticks - IoRead32 (TimerAddr)) & BIT23) == 0) {
105 UINT64 Ticks; local
110 Ticks = AsmReadTsc() + Delay;
118 while (AsmReadTsc() <= Ticks) CpuPause();
239 @param Ticks The number of elapsed ticks of running performance counter.
247 IN UINT64 Ticks
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/AcpiTimerLib/
H A DAcpiTimerLib.c149 UINT32 Ticks; local
158 Ticks = InternalAcpiGetTimerTick () + Delay;
165 while (((Ticks - InternalAcpiGetTimerTick ()) & BIT23) == 0) {
295 @param Ticks The number of elapsed ticks of running performance counter.
303 IN UINT64 Ticks
310 // Ticks
314 NanoSeconds = MultU64x32 (DivU64x32Remainder (Ticks, ACPI_TIMER_FREQUENCY, &Remainder), 1000000000u);
/vbox/src/VBox/HostDrivers/Support/testcase/
H A DtstInt.cpp133 uint64_t Ticks = ASMReadTSC() - OneStartTick; local
134 if (Ticks < MinTicks)
135 MinTicks = Ticks;
144 uint64_t Ticks = ASMReadTSC() - StartTick; local
148 i, NanoSecs, Ticks, NanoSecs / i, Ticks / i, MinTicks);
172 Ticks = ASMReadTSC() - StartTick;
176 i, NanoSecs, Ticks, NanoSecs / i, Ticks / i, MinTicks);
/vbox/src/VBox/VMM/VMMR3/
H A DVMMTests.cpp496 uint64_t Ticks = ASMReadTSC() - StartTick; local
497 if (Ticks < (SUPGetCpuHzFromGip(g_pSUPGlobalInfoPage) / 10000))
498 RTPrintf("Warning: Ticks=%RU64 (< %RU64)\n", Ticks, SUPGetCpuHzFromGip(g_pSUPGlobalInfoPage) / 10000);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Impl.h215 UINT32 Ticks; member in struct:_IP6_SERVICE
H A DIp6Nd.h130 UINT32 Ticks; member in struct:_IP6_NEIGHBOR_ENTRY

Completed in 90 milliseconds