HomeSort by relevance Sort by last modified time
    Searched full:max_thresh (Results 1 - 1 of 1) sorted by null

  /external/bluetooth/glib/glib/
gqsort.c 60 #define MAX_THRESH 4
71 log(MAX_THRESH)). Since total_elements has type size_t, we get as
94 3. Only quicksorts TOTAL_ELEMS / MAX_THRESH partitions, leaving
95 insertion sort to order the MAX_THRESH items within each partition.
125 const size_t max_thresh = MAX_THRESH * size; local
135 if (total_elems > MAX_THRESH)
205 if ((size_t) (right_ptr - lo) <= max_thresh)
207 if ((size_t) (hi - left_ptr) <= max_thresh)
214 else if ((size_t) (hi - left_ptr) <= max_thresh)
    [all...]

Completed in 694 milliseconds