Searched refs:Delta (Results 1 - 25 of 29) sorted by relevance

12

/vbox/src/VBox/Runtime/testcase/
H A DtstTime-4.cpp67 uint64_t Delta = GipPrevTS > SysPrevTS ? GipPrevTS - SysPrevTS : local
69 if (Delta > 100000000ULL /* 100 ms */ )
72 RTPrintf("tstTime-4: Delta=%llu (GipPrevTS=%llu, SysPrevTS=%llu)!\n", Delta, GipPrevTS, SysPrevTS);
H A DtstSemMutex.cpp184 uint64_t Delta = RT_ABS((int64_t)(g_au64[i] - Normal)); local
185 if (Delta > Normal / 2)
188 if (Delta > MaxDeviation)
189 MaxDeviation = Delta;
/vbox/src/VBox/Runtime/r3/nt/
H A Dtime-nt.cpp206 LARGE_INTEGER Delta; local
208 Delta.QuadPart = *(int64_t volatile *)&pUserSharedData->TimeZoneBias;
212 Delta.HighPart = pUserSharedData->TimeZoneBias.High1Time;
213 Delta.LowPart = pUserSharedData->TimeZoneBias.LowPart;
214 } while (pUserSharedData->TimeZoneBias.High2Time != Delta.HighPart);
216 return Delta.QuadPart * -100;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSynchronizationLib/
H A DSynchronization.c105 INT64 Delta; local
141 Delta = (INT64) (Current - Previous);
143 Delta = -Delta;
145 if (Delta < 0) {
146 Delta += Cycle;
148 Total += Delta;
H A DSynchronizationGcc.c115 INT64 Delta; local
151 Delta = (INT64) (Current - Previous);
153 Delta = -Delta;
155 if (Delta < 0) {
156 Delta += Cycle;
158 Total += Delta;
H A DSynchronizationMsc.c117 INT64 Delta; local
153 Delta = (INT64) (Current - Previous);
155 Delta = -Delta;
157 if (Delta < 0) {
158 Delta += Cycle;
160 Total += Delta;
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/HpetTimerDxe/
H A DHpetTimer.c304 UINT64 Delta; local
378 Delta = MainCounter - mPreviousMainCounter;
383 Delta = (mCounterMask - mPreviousMainCounter) + MainCounter;
387 Delta & mCounterMask,
496 UINT64 Delta; local
512 Delta = (mCounterMask - mPreviousMainCounter) + MainCounter;
514 Delta = MainCounter - mPreviousMainCounter;
516 if ((Delta & mCounterMask) >= mTimerCount) {
566 Delta = MainCounter - mPreviousMainCounter;
568 Delta
677 UINT64 Delta; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/Library/GopBltLib/
H A DGopBltLib.c93 @param[in] Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
94 If a Delta of 0 is used, the entire BltBuffer will be operated on.
95 If a subrectangle of the BltBuffer is used, then Delta represents
113 IN UINTN Delta
130 Delta
146 @param[in] Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
147 If a Delta of 0 is used, the entire BltBuffer will be operated on.
148 If a subrectangle of the BltBuffer is used, then Delta represents
167 IN UINTN Delta
179 Delta
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/Include/Library/
H A DBltLib.h50 @param[in] Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
51 If a Delta of 0 is used, the entire BltBuffer will be operated on.
52 If a subrectangle of the BltBuffer is used, then Delta represents
71 IN UINTN Delta
136 @param[in] Delta Number of bytes in a row of BltBuffer
153 IN UINTN Delta
193 @param[in] Delta Number of bytes in a row of BltBuffer
210 IN UINTN Delta
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/Library/FrameBufferBltLib/
H A DFrameBufferBltLib.c141 @param[in] Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
142 If a Delta of 0 is used, the entire BltBuffer will be operated on.
143 If a subrectangle of the BltBuffer is used, then Delta represents
162 IN UINTN Delta
175 Delta
206 Delta
410 @param[in] Delta Number of bytes in a row of BltBuffer
427 IN UINTN Delta
456 // If Delta is zero, then the entire BltBuffer is being used, so Delta
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitterGraphics.c174 Only one pixel will be used from the BltBuffer. Delta is NOT used.
179 DestinationY is not zero then Delta must be set to the length in bytes
185 not zero then Delta must be set to the length in bytes of a row in the
191 The BltBuffer and Delta are not used in this mode.
205 @param Delta OPTIONAL.
225 IN UINTN Delta OPTIONAL
259 Delta
283 Delta
448 Only one pixel will be used from the BltBuffer. Delta is NOT used.
454 DestinationY is not zero then Delta mus
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/
H A DVBoxVgaGraphicsOutput.c230 IN UINTN Delta
249 Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
250 If a Delta of 0 is used, the entire BltBuffer will be operated on.
251 If a subrectangle of the BltBuffer is used, then Delta represents
284 // If Delta is zero, then the entire BltBuffer is being used, so Delta
288 /* vvl: Delta passed in bytes to use it for coordinate arithmetic
291 if (Delta == 0) {
292 Delta = Width * 4;
294 Delta /
[all...]
H A DVBoxVgaUgaDraw.c157 IN UINTN Delta
182 // If Delta is zero, then the entire BltBuffer is being used, so Delta
186 if (Delta == 0) {
187 Delta = Width * sizeof (EFI_UGA_PIXEL);
189 Delta /= sizeof (EFI_UGA_PIXEL);
249 Blt = (EFI_UGA_PIXEL *) ((UINT32 *) BltBuffer + (DstY * Delta) + (DestinationX + X));
300 Blt = (EFI_UGA_PIXEL *) ((UINT32 *) BltBuffer + (SrcY * Delta) + (SourceX + X));
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DUgaDraw.h94 ///< Only one pixel will be used from the BltBuffer. Delta is NOT used.
100 ///< DestinationY is not zero then Delta must be set to the length in bytes
107 ///< not zero then Delta must be set to the length in bytes of a row in the
113 ///< The BltBuffer and Delta are not used in this mode.
132 @param[in] Delta - OPTIONAL
151 IN UINTN Delta OPTIONAL
H A DGraphicsOutput.h159 /// Only one pixel will be used from the BltBuffer. Delta is NOT used.
168 /// DestinationY is not zero then Delta must be set to the length in bytes
178 /// not zero then Delta must be set to the length in bytes of a row in the
187 /// The BltBuffer and Delta are not used in this mode.
208 @param Delta OPTIONAL
227 IN UINTN Delta OPTIONAL
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Include/Protocol/
H A DUgaDraw.h107 Only one pixel will be used from the BltBuffer. Delta is NOT used.
113 DestinationY is not zero then Delta must be set to the length in bytes
120 not zero then Delta must be set to the length in bytes of a row in the
126 The BltBuffer and Delta are not used in this mode.
139 @param[in] Delta - OPTIONAL
158 IN UINTN Delta OPTIONAL
H A DGraphicsOutput.h124 Only one pixel will be used from the BltBuffer. Delta is NOT used.
130 DestinationY is not zero then Delta must be set to the length in bytes
137 not zero then Delta must be set to the length in bytes of a row in the
143 The BltBuffer and Delta are not used in this mode.
155 @param Delta OPTIONAL
174 IN UINTN Delta OPTIONAL
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/DataSink/
H A DDataSink.c610 UINT32 Delta; local
649 Delta = (UINT32)( DeltaBytes >> DATA_RATE_UPDATE_SHIFT );
653 Delta,
660 Delta,
667 Delta,
674 Delta,
681 Delta,
687 Delta,
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/CirrusLogic5430Dxe/
H A DCirrusLogic5430GraphicsOutput.c197 IN UINTN Delta
216 Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
217 If a Delta of 0 is used, the entire BltBuffer will be operated on.
218 If a subrectangle of the BltBuffer is used, then Delta represents
252 // If Delta is zero, then the entire BltBuffer is being used, so Delta
256 if (Delta == 0) {
257 Delta = Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL);
330 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) ((UINT8 *) BltBuffer + (DstY * Delta) + (DestinationX + X) * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
445 (SrcY * Delta)
[all...]
H A DCirrusLogic5430UgaDraw.c122 IN UINTN Delta
148 // If Delta is zero, then the entire BltBuffer is being used, so Delta
152 if (Delta == 0) {
153 Delta = Width * sizeof (EFI_UGA_PIXEL);
225 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) BltBuffer + (DstY * Delta) + (DestinationX + X) * sizeof (EFI_UGA_PIXEL));
337 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) BltBuffer + (SrcY * Delta) + (SourceX + X) * sizeof (EFI_UGA_PIXEL));
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DUefiLibPrint.c366 UINTN Delta; local
510 Delta = Blt->Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL);
514 Delta = 0;
526 Delta
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DUefiLibPrint.c366 UINTN Delta; local
510 Delta = Blt->Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL);
514 Delta = 0;
526 Delta
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/
H A DBiosVideo.h329 @param Delta Not used for EfiBltVideoFill and
330 EfiBltVideoToVideo operation. If a Delta of 0 is
333 Delta represents the number of bytes in a row of
352 IN UINTN Delta
372 @param Delta Not used for EfiBltVideoFill and
373 EfiBltVideoToVideo operation. If a Delta of 0 is
376 Delta represents the number of bytes in a row of
395 IN UINTN Delta
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/QemuVideoDxe/
H A DGop.c215 IN UINTN Delta
234 Delta - Not used for EfiBltVideoFill and EfiBltVideoToVideo operation.
235 If a Delta of 0 is used, the entire BltBuffer will be operated on.
236 If a subrectangle of the BltBuffer is used, then Delta represents
270 Delta
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/DataSource/
H A DDataSource.c1198 UINT32 Delta; local
1228 Delta = (UINT32)( DeltaBytes >> DATA_RATE_UPDATE_SHIFT );
1232 Delta,
1239 Delta,
1246 Delta,
1253 Delta,
1260 Delta,
1266 Delta,

Completed in 1013 milliseconds

12