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

Function aquicksort_ulong

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

Source from the content-addressed store, hash-verified

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))
904{
905 if (aquicksort_dispatch((npy_ulong *)vv, tosort, n)) {
906 return 0;
907 }
908 return aquicksort_<npy::ulong_tag>((npy_ulong *)vv, tosort, n);
909}
910NPY_NO_EXPORT int
911aquicksort_longlong(void *vv, npy_intp *tosort, npy_intp n,
912 void *NPY_UNUSED(varr))

Callers

nothing calls this directly

Calls 1

aquicksort_dispatchFunction · 0.85

Tested by

no test coverage detected