Home
last modified time | relevance | path

Searched refs:_merge_sort (Results 1 – 4 of 4) sorted by relevance

/dports/devel/radare2/radare2-5.1.1/shlr/sdb/src/
H A Dls.c88 static SdbListIter * _merge_sort(SdbListIter *head, SdbListComparator cmp) { in _merge_sort() function
94 head = _merge_sort (head, cmp); in _merge_sort()
95 second = _merge_sort (second, cmp); in _merge_sort()
105 list->head = _merge_sort (list->head, cmp); in ls_merge_sort()
/dports/graphics/shotwell/shotwell-0.30.14/src/
H A DSortedList.vala343 _merge_sort(array, new G[count], 0, count - 1);
359 private void _merge_sort(G[] array, G[] scratch, int start_index, int end_index) {
368 _merge_sort(array, scratch, start_index, middle_index - 1);
369 _merge_sort(array, scratch, middle_index, end_index);
/dports/devel/radare2/radare2-5.1.1/libr/util/
H A Dlist.c523 static RListIter * _merge_sort(RListIter *head, RListComparator cmp) { in _merge_sort() function
529 head = _merge_sort (head, cmp); in _merge_sort()
530 second = _merge_sort (second, cmp); in _merge_sort()
539 list->head = _merge_sort (list->head, cmp); in r_list_merge_sort()
/dports/graphics/elementary-photos/photos-2.7.1/src/
H A DSortedList.vala378 _merge_sort (array, new G[count], 0, count - 1);
394 private void _merge_sort (G[] array, G[] scratch, int start_index, int end_index) {
403 _merge_sort (array, scratch, start_index, middle_index - 1);
404 _merge_sort (array, scratch, middle_index, end_index);