Searched refs:selectImpl (Results 1 – 1 of 1) sorted by relevance
/aosp14/frameworks/base/core/java/com/android/internal/util/ |
H A D | QuickSelect.java | 32 private static <T> int selectImpl(@NonNull List<T> list, int left, int right, int k, in selectImpl() method in QuickSelect 49 private static int selectImpl(@NonNull int[] array, int left, int right, int k) { in selectImpl() method in QuickSelect 65 private static int selectImpl(@NonNull long[] array, int left, int right, int k) { in selectImpl() method in QuickSelect 81 private static <T> int selectImpl(@NonNull T[] array, int left, int right, int k, in selectImpl() method in QuickSelect 198 return list.get(selectImpl(list, start, start + length - 1, k + start, comparator)); in select() 216 return array[selectImpl(array, start, start + length - 1, k + start)]; in select() 234 return array[selectImpl(array, start, start + length - 1, k + start)]; in select() 254 return array[selectImpl(array, start, start + length - 1, k + start, comparator)]; in select()
|