Lines Matching defs:high
482 HINT_INLINE void HUF_insertionSort(nodeElt huffNode[], int const low, int const high) {
484 int const size = high-low+1;
498 static int HUF_quickSortPartition(nodeElt arr[], int const low, int const high) {
502 U32 const pivot = arr[high].count;
505 for ( ; j < high; j++) {
511 HUF_swapNodes(&arr[i + 1], &arr[high]);
518 static void HUF_simpleQuickSort(nodeElt arr[], int low, int high) {
520 if (high - low < kInsertionSortThreshold) {
521 HUF_insertionSort(arr, low, high);
524 while (low < high) {
525 int const idx = HUF_quickSortPartition(arr, low, high);
526 if (idx - low < high - idx) {
530 HUF_simpleQuickSort(arr, idx + 1, high);
531 high = idx - 1;
796 * doesn't matter that the high bits have noise from the value.