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

12

/device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
H A DSyncTimer.c81 UINT64 Delta; local
94 Delta = Timer - CurrentTimer;
99 Delta = mCycle - (CurrentTimer - Timer) + 1;
106 Delta = CurrentTimer - Timer;
111 Delta = mCycle - (Timer - CurrentTimer) + 1;
115 return (BOOLEAN) (Delta >= mTimeoutTicker);
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
H A DDebugTimer.c129 UINT64 Delta; local
139 Delta = Timer - CurrentTimer;
144 Delta = TimerCycle - (CurrentTimer - Timer) + 1;
147 return (BOOLEAN) (Delta >= TimeoutTicker);
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
H A DSynchronizationGcc.c116 INT64 Delta; local
152 Delta = (INT64) (Current - Previous);
154 Delta = -Delta;
156 if (Delta < 0) {
157 Delta += Cycle;
159 Total += Delta;
/device/linaro/bootloader/edk2/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;
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/LcdGraphicsOutputDxe/
H A DLcdGraphicsOutputBlt.c163 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
219 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
240 if(( Delta != 0 ) && ( Delta != Width * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
241 // Delta is not zero and it is different from the width.
243 BltBufferHorizontalResolution = (UINT32) (Delta / sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
286 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
306 if(( Delta != 0 ) && ( Delta != Width * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
307 // Delta i
[all...]
/device/linaro/bootloader/edk2/Omap35xxPkg/LcdGraphicsOutputDxe/
H A DLcdGraphicsOutputBlt.c163 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
219 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
240 if(( Delta != 0 ) && ( Delta != Width * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
241 // Delta is not zero and it is different from the width.
243 BltBufferHorizontalResolution = (UINT32) (Delta / sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
286 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
306 if(( Delta != 0 ) && ( Delta != Width * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
307 // Delta i
[all...]
/device/linaro/bootloader/edk2/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
678 UINT64 Delta; local
[all...]
/device/linaro/bootloader/edk2/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...]
/device/linaro/bootloader/edk2/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
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Library/EblCmdLib/
H A DEblCmdLib.c222 UINT64 Delta, TicksPerSecond, Milliseconds, Microseconds; local
236 Delta = Stop - Start;
237 Microseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000000), TicksPerSecond, NULL);
253 Delta = Stop - Start;
254 TimeStamp += Delta;
255 Milliseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000), TicksPerSecond, NULL);
/device/linaro/bootloader/edk2/BeagleBoardPkg/Library/EblCmdLib/
H A DEblCmdLib.c222 UINT64 Delta, TicksPerSecond, Milliseconds, Microseconds; local
236 Delta = Stop - Start;
237 Microseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000000), TicksPerSecond, NULL);
253 Delta = Stop - Start;
254 TimeStamp += Delta;
255 Milliseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000), TicksPerSecond, NULL);
/device/linaro/bootloader/edk2/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
408 @param[in] Delta Number of bytes in a row of BltBuffer
425 IN UINTN Delta
454 // If Delta is zero, then the entire BltBuffer is being used, so Delta
[all...]
/device/linaro/bootloader/edk2/EmulatorPkg/EmuGopDxe/
H A DGopScreen.c182 @param Delta OPTIONAL
201 IN UINTN Delta OPTIONAL
219 // If Delta is zero, then the entire BltBuffer is being used, so Delta
223 if (Delta == 0) {
224 Delta = Width * sizeof (EFI_UGA_PIXEL);
244 GopBltArgs.Delta = Delta;
/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/
H A DEblCmdLib.c230 UINT64 Delta, TicksPerSecond, Milliseconds, Microseconds; local
250 Delta = CountUp?(Stop - Start):(Start - Stop);
251 Microseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000000), TicksPerSecond, NULL);
267 Delta = CountUp?(Stop - Start):(Start - Stop);
268 TimeStamp += Delta;
269 Milliseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000), TicksPerSecond, NULL);
/device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/
H A DLinuxLoaderHelper.c39 UINT64 Delta, TicksPerSecond, Milliseconds; local
59 Delta = CountUp ? (Stop - Start) : (Start - Stop);
60 TimeStamp += Delta;
61 Milliseconds = DivU64x64Remainder (MultU64x32 (Delta, 1000), TicksPerSecond, NULL);
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Protocol/
H A DUgaDraw.h105 Only one pixel will be used from the BltBuffer. Delta is NOT used.
111 DestinationY is not zero then Delta must be set to the length in bytes
118 not zero then Delta must be set to the length in bytes of a row in the
124 The BltBuffer and Delta are not used in this mode.
137 @param[in] Delta - OPTIONAL
156 IN UINTN Delta OPTIONAL
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/UgaDraw/
H A DUgaDraw.h123 IN UINTN Delta OPTIONAL
133 Only one pixel will be used from the BltBuffer. Delta is NOT used.
138 DestinationY is not zero then Delta must be set to the length in bytes
144 not zero then Delta must be set to the length in bytes of a row in the
149 The BltBuffer and Delta are not used in this mode.
162 Delta -
/device/linaro/bootloader/edk2/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
/device/linaro/bootloader/edk2/Nt32Pkg/TimerDxe/
H A DTimer.c111 UINT32 Delta; local
168 Delta = CurrentTick - mNtLastTick;
174 if (Delta < 1000) {
190 CallbackFunction ((UINT64) (Delta * 10000));
/device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/
H A DLcdGraphicsOutputBlt.c269 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
412 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
437 if(( Delta != 0 ) && ( Delta != Width * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
438 // Delta is not zero and it is different from the width.
440 BltBufferHorizontalResolution = (UINT32) (Delta / sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
571 IN UINTN Delta OPTIONAL // Number of BYTES in a row of the BltBuffer
595 if(( Delta != 0 ) && ( Delta != Width * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
596 // Delta i
[all...]
H A DLcdGraphicsOutputDxe.h88 IN UINTN Delta OPTIONAL
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitterGraphics.c212 Only one pixel will be used from the BltBuffer. Delta is NOT used.
217 DestinationY is not zero then Delta must be set to the length in bytes
223 not zero then Delta must be set to the length in bytes of a row in the
229 The BltBuffer and Delta are not used in this mode.
243 @param Delta OPTIONAL.
263 IN UINTN Delta OPTIONAL
297 Delta
321 Delta
486 Only one pixel will be used from the BltBuffer. Delta is NOT used.
492 DestinationY is not zero then Delta mus
[all...]
/device/linaro/bootloader/edk2/CorebootPayloadPkg/FbGop/
H A DFbGop.h286 @param Delta Not used for EfiBltVideoFill and
287 EfiBltVideoToVideo operation. If a Delta of 0 is
290 Delta represents the number of bytes in a row of
309 IN UINTN Delta
329 @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

Completed in 402 milliseconds

12