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

Function quicksort_int

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

Source from the content-addressed store, hash-verified

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{
749 if (quicksort_dispatch((npy_int *)start, n)) {
750 return 0;
751 }
752 return quicksort_<npy::int_tag>((npy_int *)start, n);
753}
754NPY_NO_EXPORT int
755quicksort_uint(void *start, npy_intp n, void *NPY_UNUSED(varr))
756{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected