| 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 | { |
| 773 | if (quicksort_dispatch((npy_ulong *)start, n)) { |
| 774 | return 0; |
| 775 | } |
| 776 | return quicksort_<npy::ulong_tag>((npy_ulong *)start, n); |
| 777 | } |
| 778 | NPY_NO_EXPORT int |
| 779 | quicksort_longlong(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 780 | { |
nothing calls this directly
no test coverage detected