| 875 | return aquicksort_<npy::ushort_tag>((npy_ushort *)vv, tosort, n); |
| 876 | } |
| 877 | NPY_NO_EXPORT int |
| 878 | aquicksort_int(void *vv, npy_intp *tosort, npy_intp n, void *NPY_UNUSED(varr)) |
| 879 | { |
| 880 | if (aquicksort_dispatch((npy_int *)vv, tosort, n)) { |
| 881 | return 0; |
| 882 | } |
| 883 | return aquicksort_<npy::int_tag>((npy_int *)vv, tosort, n); |
| 884 | } |
| 885 | NPY_NO_EXPORT int |
| 886 | aquicksort_uint(void *vv, npy_intp *tosort, npy_intp n, void *NPY_UNUSED(varr)) |
| 887 | { |
nothing calls this directly
no test coverage detected