Searched defs:NextSwapLocation (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/BaseSortLib/
H A DBaseSortLib.c57 UINTN NextSwapLocation; local
69 NextSwapLocation = 0;
91 CopyMem (Buffer, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
92 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), (UINT8*)BufferToSort+((LoopCount)*ElementSize), ElementSize);
96 // increment NextSwapLocation
98 NextSwapLocation++;
105 CopyMem (Pivot, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
106 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), Buffer, ElementSize);
112 if (NextSwapLocation >= 2) {
115 NextSwapLocation,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiSortLib/
H A DUefiSortLib.c67 UINTN NextSwapLocation; local
79 NextSwapLocation = 0;
101 CopyMem (Buffer, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
102 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), (UINT8*)BufferToSort+((LoopCount)*ElementSize), ElementSize);
106 // increment NextSwapLocation
108 NextSwapLocation++;
115 CopyMem (Pivot, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
116 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), Buffer, ElementSize);
122 if (NextSwapLocation >= 2) {
125 NextSwapLocation,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c46 UINTN NextSwapLocation; local
56 NextSwapLocation = 0;
76 CopyMem (Buffer, (UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), ElementSize);
77 CopyMem ((UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), (UINT8 *)BufferToSort + ((LoopCount) * ElementSize), ElementSize);
81 // Increment NextSwapLocation
83 NextSwapLocation++;
90 CopyMem (Pivot, (UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), ElementSize);
91 CopyMem ((UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), Buffer, ElementSize);
99 NextSwapLocation,
106 (UINT8 *)BufferToSort + (NextSwapLocation
[all...]

Completed in 210 milliseconds