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

Function quicksort_short

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

Source from the content-addressed store, hash-verified

728 return quicksort_<npy::ubyte_tag>((npy_ubyte *)start, n);
729}
730NPY_NO_EXPORT int
731quicksort_short(void *start, npy_intp n, void *NPY_UNUSED(varr))
732{
733 if (quicksort_dispatch((npy_short *)start, n)) {
734 return 0;
735 }
736 return quicksort_<npy::short_tag>((npy_short *)start, n);
737}
738NPY_NO_EXPORT int
739quicksort_ushort(void *start, npy_intp n, void *NPY_UNUSED(varr))
740{

Callers

nothing calls this directly

Calls 1

quicksort_dispatchFunction · 0.85

Tested by

no test coverage detected