| 784 | return quicksort_<npy::longlong_tag>((npy_longlong *)start, n); |
| 785 | } |
| 786 | NPY_NO_EXPORT int |
| 787 | quicksort_ulonglong(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 788 | { |
| 789 | if (quicksort_dispatch((npy_ulonglong *)start, n)) { |
| 790 | return 0; |
| 791 | } |
| 792 | return quicksort_<npy::ulonglong_tag>((npy_ulonglong *)start, n); |
| 793 | } |
| 794 | NPY_NO_EXPORT int |
| 795 | quicksort_half(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 796 | { |
nothing calls this directly
no test coverage detected