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

Function quicksort_longlong

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

Source from the content-addressed store, hash-verified

776 return quicksort_<npy::ulong_tag>((npy_ulong *)start, n);
777}
778NPY_NO_EXPORT int
779quicksort_longlong(void *start, npy_intp n, void *NPY_UNUSED(varr))
780{
781 if (quicksort_dispatch((npy_longlong *)start, n)) {
782 return 0;
783 }
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{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected