24 QuickSorter(int32_t newElementSize, int32_t keyNumBits,
void* newMemory);
25 void sort(int32_t numElements);
28 void quickSort(int32_t low, int32_t high);
29 int32_t partition(int32_t low, int32_t high);
30 int32_t getKey(int32_t i);
31 void swap(int32_t i, int32_t j);
32 void* getElementAddress(int32_t i);
34 const int32_t elementSize;
35 const uint32_t keyMask;