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

Function aquicksort_longlong

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

Source from the content-addressed store, hash-verified

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))
913{
914 if (aquicksort_dispatch((npy_longlong *)vv, tosort, n)) {
915 return 0;
916 }
917 return aquicksort_<npy::longlong_tag>((npy_longlong *)vv, tosort, n);
918}
919NPY_NO_EXPORT int
920aquicksort_ulonglong(void *vv, npy_intp *tosort, npy_intp n,
921 void *NPY_UNUSED(varr))

Callers

nothing calls this directly

Calls 1

aquicksort_dispatchFunction · 0.85

Tested by

no test coverage detected