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

Function aquicksort_uint

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

Source from the content-addressed store, hash-verified

883 return aquicksort_<npy::int_tag>((npy_int *)vv, tosort, n);
884}
885NPY_NO_EXPORT int
886aquicksort_uint(void *vv, npy_intp *tosort, npy_intp n, void *NPY_UNUSED(varr))
887{
888 if (aquicksort_dispatch((npy_uint *)vv, tosort, n)) {
889 return 0;
890 }
891 return aquicksort_<npy::uint_tag>((npy_uint *)vv, tosort, n);
892}
893NPY_NO_EXPORT int
894aquicksort_long(void *vv, npy_intp *tosort, npy_intp n, void *NPY_UNUSED(varr))
895{

Callers

nothing calls this directly

Calls 1

aquicksort_dispatchFunction · 0.85

Tested by

no test coverage detected