| 800 | return quicksort_<npy::half_tag>((npy_half *)start, n); |
| 801 | } |
| 802 | NPY_NO_EXPORT int |
| 803 | quicksort_float(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 804 | { |
| 805 | if (quicksort_dispatch((npy_float *)start, n)) { |
| 806 | return 0; |
| 807 | } |
| 808 | return quicksort_<npy::float_tag>((npy_float *)start, n); |
| 809 | } |
| 810 | NPY_NO_EXPORT int |
| 811 | quicksort_double(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 812 | { |
nothing calls this directly
no test coverage detected