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

Function aquicksort_ulonglong

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

Source from the content-addressed store, hash-verified

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))
922{
923 if (aquicksort_dispatch((npy_ulonglong *)vv, tosort, n)) {
924 return 0;
925 }
926 return aquicksort_<npy::ulonglong_tag>((npy_ulonglong *)vv, tosort, n);
927}
928NPY_NO_EXPORT int
929aquicksort_half(void *vv, npy_intp *tosort, npy_intp n, void *NPY_UNUSED(varr))
930{

Callers

nothing calls this directly

Calls 1

aquicksort_dispatchFunction · 0.85

Tested by

no test coverage detected