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

Function quicksort_ulonglong

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

Source from the content-addressed store, hash-verified

784 return quicksort_<npy::longlong_tag>((npy_longlong *)start, n);
785}
786NPY_NO_EXPORT int
787quicksort_ulonglong(void *start, npy_intp n, void *NPY_UNUSED(varr))
788{
789 if (quicksort_dispatch((npy_ulonglong *)start, n)) {
790 return 0;
791 }
792 return quicksort_<npy::ulonglong_tag>((npy_ulonglong *)start, n);
793}
794NPY_NO_EXPORT int
795quicksort_half(void *start, npy_intp n, void *NPY_UNUSED(varr))
796{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected