| 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 | { |
| 765 | if (quicksort_dispatch((npy_long *)start, n)) { |
| 766 | return 0; |
| 767 | } |
| 768 | return quicksort_<npy::long_tag>((npy_long *)start, n); |
| 769 | } |
| 770 | NPY_NO_EXPORT int |
| 771 | quicksort_ulong(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 772 | { |
nothing calls this directly
no test coverage detected