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

Function quicksort_long

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

Source from the content-addressed store, hash-verified

760 return quicksort_<npy::uint_tag>((npy_uint *)start, n);
761}
762NPY_NO_EXPORT int
763quicksort_long(void *start, npy_intp n, void *NPY_UNUSED(varr))
764{
765 if (quicksort_dispatch((npy_long *)start, n)) {
766 return 0;
767 }
768 return quicksort_<npy::long_tag>((npy_long *)start, n);
769}
770NPY_NO_EXPORT int
771quicksort_ulong(void *start, npy_intp n, void *NPY_UNUSED(varr))
772{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected