| 728 | return quicksort_<npy::ubyte_tag>((npy_ubyte *)start, n); |
| 729 | } |
| 730 | NPY_NO_EXPORT int |
| 731 | quicksort_short(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 732 | { |
| 733 | if (quicksort_dispatch((npy_short *)start, n)) { |
| 734 | return 0; |
| 735 | } |
| 736 | return quicksort_<npy::short_tag>((npy_short *)start, n); |
| 737 | } |
| 738 | NPY_NO_EXPORT int |
| 739 | quicksort_ushort(void *start, npy_intp n, void *NPY_UNUSED(varr)) |
| 740 | { |
nothing calls this directly
no test coverage detected