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

Function aquicksort_long

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

Source from the content-addressed store, hash-verified

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{
896 if (aquicksort_dispatch((npy_long *)vv, tosort, n)) {
897 return 0;
898 }
899 return aquicksort_<npy::long_tag>((npy_long *)vv, tosort, n);
900}
901NPY_NO_EXPORT int
902aquicksort_ulong(void *vv, npy_intp *tosort, npy_intp n,
903 void *NPY_UNUSED(varr))

Callers

nothing calls this directly

Calls 1

aquicksort_dispatchFunction · 0.85

Tested by

no test coverage detected