HomeSort by relevance Sort by last modified time
    Searched refs:NextSwapLocation (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BaseSortLib/
BaseSortLib.c 56 UINTN NextSwapLocation;
68 NextSwapLocation = 0;
90 CopyMem (Buffer, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
91 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), (UINT8*)BufferToSort+((LoopCount)*ElementSize), ElementSize);
95 // increment NextSwapLocation
97 NextSwapLocation++;
104 CopyMem (Pivot, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
105 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), Buffer, ElementSize);
111 if (NextSwapLocation >= 2) {
114 NextSwapLocation,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiSortLib/
UefiSortLib.c 72 UINTN NextSwapLocation;
84 NextSwapLocation = 0;
106 CopyMem (Buffer, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
107 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), (UINT8*)BufferToSort+((LoopCount)*ElementSize), ElementSize);
111 // increment NextSwapLocation
113 NextSwapLocation++;
120 CopyMem (Pivot, (UINT8*)BufferToSort+(NextSwapLocation*ElementSize), ElementSize);
121 CopyMem ((UINT8*)BufferToSort+(NextSwapLocation*ElementSize), Buffer, ElementSize);
127 if (NextSwapLocation >= 2) {
130 NextSwapLocation,
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
CrtWrapper.c 46 UINTN NextSwapLocation;
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 + 1) * ElementSize,
    [all...]

Completed in 234 milliseconds