Searched refs:Duration (Results 1 - 24 of 24) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmdcriticalregion.h54 OSStatus MD_CriticalRegionEnter(MDCriticalRegionID pMDCriticalRegionID, Duration pTimeout);
H A Dmdcriticalregion.c115 MD_CriticalRegionEnter(MDCriticalRegionID inCriticalRegionID, Duration inTimeout)
/vbox/src/VBox/Devices/EFI/Firmware/PerformancePkg/Dp_App/
H A DDpTrace.c52 UINT64 Duration; local
89 Duration = GetDuration (&Measurement);
92 CumData[TIndex].Duration += Duration;
94 if ( Duration < CumData[TIndex].MinDur ) {
95 CumData[TIndex].MinDur = Duration;
97 if ( Duration > CumData[TIndex].MaxDur ) {
98 CumData[TIndex].MaxDur = Duration;
130 UINT64 Duration; local
198 Duration
287 UINT64 Duration; local
379 UINT64 Duration; local
515 UINT64 Duration; local
635 UINT64 Duration; local
712 UINT64 Duration; local
[all...]
H A DDpUtilities.c83 UINT64 Duration; local
95 Duration = Measurement->EndTimeStamp - Measurement->StartTimeStamp;
96 Error = (BOOLEAN)(Duration > Measurement->EndTimeStamp);
99 Duration = Measurement->StartTimeStamp - Measurement->EndTimeStamp;
100 Error = (BOOLEAN)(Duration > Measurement->StartTimeStamp);
105 Duration = 0;
107 return Duration;
367 Calculate the Duration in microseconds.
369 Duration is multiplied by 1000, instead of Frequency being divided by 1000 or
370 multiplying the result by 1000, in order to maintain precision. Since Duration i
[all...]
H A DDp.h63 UINT64 Duration; ///< Cumulative duration for this item. member in struct:__anon12669
H A DDpInternal.h127 Calculate the Duration in microseconds.
129 Duration is multiplied by 1000, instead of Frequency being divided by 1000 or
130 multiplying the result by 1000, in order to maintain precision. Since Duration is
133 The time is calculated as (Duration * 1000) / Timer_Frequency.
135 @param[in] Duration The event duration in timer ticks.
141 IN UINT64 Duration
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DPerformance.c157 UINT32 Duration; local
276 Duration = (UINT32) DivU64x32 (Ticker, (UINT32) Freq);
278 if (Duration > 0) {
283 mPerfData.Duration = Duration;
320 mPerfData.Duration = (UINT32) DivU64x32 (Ticker, (UINT32) Freq);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiUsbLib/
H A DHid.c258 Interface, and ReportId, and set the idle rate to the value specified by Duration.
264 @param Duration The idle rate to set for the specified USB target.
277 IN UINT8 Duration
290 Request.Value = (UINT16) ((Duration << 8) | ReportId);
311 Interface, and ReportId, and return the ide rate in Duration.
313 If Duration is NULL, then ASSERT().
318 @param Duration A pointer to the idle rate retrieved from the specified USB target.
331 OUT UINT8 *Duration
339 ASSERT (Duration != NULL);
354 Duration,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PiDxeS3BootScriptLib/
H A DBootScriptInternalFormat.h119 UINT64 Duration; member in struct:__anon11098
140 UINT64 Duration; member in struct:__anon11101
H A DBootScriptSave.c1236 @param Duration Duration in microseconds of the stall
1244 IN UINTN Duration
1262 ScriptStall.Duration = Duration;
1318 @param Duration Duration in microseconds of the stall.
1332 IN UINTN Duration,
1356 ScriptMemPoll.Duration = Duration;
1327 S3BootScriptSaveMemPoll( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *BitMask, IN VOID *BitValue, IN UINTN Duration, IN UINTN LoopTimes ) argument
[all...]
H A DBootScriptExecute.c1075 DEBUG ((EFI_D_INFO, "BootScriptExecuteStall - 0x%08x\n", (UINTN)Stall.Duration));
1077 MicroSecondDelay ((UINTN) Stall.Duration);
1169 NanoSecondDelay ((UINTN)MemPoll.Duration);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Event/
H A DTimer.c190 @param Duration The number of 100ns elasped since the last call
197 IN UINT64 Duration
210 mEfiSystemTime += Duration;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DUefiUsbLib.h133 Interface, and ReportId, and set the idle rate to the value specified by Duration.
139 @param Duration The idle rate to set for the specified USB target.
152 IN UINT8 Duration
159 Interface, and ReportId, and return the ide rate in Duration.
161 If Duration is NULL, then ASSERT().
166 @param Duration A pointer to the idle rate retrieved from the specified USB target.
179 OUT UINT8 *Duration
H A DS3BootScriptLib.h271 @param[in] Duration The duration in microseconds of the stall.
280 IN UINTN Duration
325 @param[in] Duration The duration in microseconds of the stall.
340 IN UINTN Duration,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseS3BootScriptLibNull/
H A DBootScriptLib.c230 @param Duration Duration in microseconds of the stall
238 IN UINTN Duration
286 @param Duration Duration in microseconds of the stall.
300 IN UINTN Duration,
295 S3BootScriptSaveMemPoll( IN S3_BOOT_SCRIPT_LIB_WIDTH Width, IN UINT64 Address, IN VOID *BitMask, IN VOID *BitValue, IN UINTN Duration, IN UINTN LoopTimes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
H A DUsbMouseAbsolutePointer.c530 UINT8 Duration; local
617 // Duration is zero, which means the duration is infinite.
621 Duration = 0;
626 Duration
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbMouseDxe/
H A DUsbMouse.c530 UINT8 Duration; local
623 // Duration is zero, which means the duration is infinite.
627 Duration = 0;
632 Duration
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Guid/
H A DPerformance.h54 UINT32 Duration; member in struct:__anon11003
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/S3SaveStateDxe/
H A DS3SaveState.c298 UINT32 Duration; local
300 Duration = VA_ARG (Marker, UINT32);
302 return S3BootScriptSaveStall (Duration);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/SmmS3SaveState/
H A DSmmS3SaveState.c297 UINT32 Duration; local
299 Duration = VA_ARG (Marker, UINT32);
301 return S3BootScriptSaveStall (Duration);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/
H A DScriptExecute.c96 PerfData->Duration = (UINT32) DivU64x32 (ScriptExecuteTicks, (UINT32) Freq);;
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Universal/Acpi/S3Resume2Pei/
H A DS3Resume.c352 PerfData->Duration = (UINT32) DivU64x32 (Ticker, (UINT32) Freq);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/
H A DDxeMain.h392 @param Duration The number of 100ns elasped since the last call
399 IN UINT64 Duration
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dd3dx9anim.h155 DOUBLE Duration; member in struct:_D3DXEVENT_DESC

Completed in 3314 milliseconds