| 752 | return quicksort_<npy::int_tag>((npy_int *)start, n); |
| 753 | } |
| 754 | NPY_NO_EXPORT int |
| 755 | quicksort_uint(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 756 | { |
| 757 | if (quicksort_dispatch((npy_uint *)start, n)) { |
| 758 | return 0; |
| 759 | } |
| 760 | return quicksort_<npy::uint_tag>((npy_uint *)start, n); |
| 761 | } |
| 762 | NPY_NO_EXPORT int |
| 763 | quicksort_long(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 764 | { |
nothing calls this directly
no test coverage detected