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

Function aquicksort_int

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

Source from the content-addressed store, hash-verified

875 return aquicksort_<npy::ushort_tag>((npy_ushort *)vv, tosort, n);
876}
877NPY_NO_EXPORT int
878aquicksort_int(void *vv, npy_intp *tosort, npy_intp n, void *NPY_UNUSED(varr))
879{
880 if (aquicksort_dispatch((npy_int *)vv, tosort, n)) {
881 return 0;
882 }
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{

Callers

nothing calls this directly

Calls 1

aquicksort_dispatchFunction · 0.85

Tested by

no test coverage detected