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

Function quicksort_uint

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

Source from the content-addressed store, hash-verified

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{
757 if (quicksort_dispatch((npy_uint *)start, n)) {
758 return 0;
759 }
760 return quicksort_<npy::uint_tag>((npy_uint *)start, n);
761}
762NPY_NO_EXPORT int
763quicksort_long(void *start, npy_intp n, void *NPY_UNUSED(varr))
764{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected