Home | History | Annotate | Download | only in SysCall

Lines Matching defs:ElementSize

39   IN CONST  UINTN         ElementSize,

52 if (Count < 2 || ElementSize < 1) {
61 Pivot = ((UINT8 *)BufferToSort + ((Count - 1) * ElementSize));
72 if (CompareFunction ((VOID *)((UINT8 *)BufferToSort + ((LoopCount) * ElementSize)), Pivot) <= 0) {
76 CopyMem (Buffer, (UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), ElementSize);
77 CopyMem ((UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), (UINT8 *)BufferToSort + ((LoopCount) * ElementSize), ElementSize);
78 CopyMem ((UINT8 *)BufferToSort + ((LoopCount) * ElementSize), Buffer, ElementSize);
89 CopyMem (Buffer, Pivot, ElementSize);
90 CopyMem (Pivot, (UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), ElementSize);
91 CopyMem ((UINT8 *)BufferToSort + (NextSwapLocation * ElementSize), Buffer, ElementSize);
100 ElementSize,
106 (UINT8 *)BufferToSort + (NextSwapLocation + 1) * ElementSize,
108 ElementSize,