MCPcopy Create free account
hub / github.com/numpy/numpy / quicksort_ushort

Function quicksort_ushort

numpy/core/src/npysort/quicksort.cpp:738–745  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

736 return quicksort_<npy::short_tag>((npy_short *)start, n);
737}
738NPY_NO_EXPORT int
739quicksort_ushort(void *start, npy_intp n, void *NPY_UNUSED(varr))
740{
741 if (quicksort_dispatch((npy_ushort *)start, n)) {
742 return 0;
743 }
744 return quicksort_<npy::ushort_tag>((npy_ushort *)start, n);
745}
746NPY_NO_EXPORT int
747quicksort_int(void *start, npy_intp n, void *NPY_UNUSED(varr))
748{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected