reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/Parallel.h
  106   std::swap(*(End - 1), *Pivot);
  107   Pivot = std::partition(Start, End - 1, [&Comp, End](decltype(*Start) V) {
  111   std::swap(*Pivot, *(End - 1));
  115     parallel_quick_sort(Start, Pivot, Comp, TG, Depth - 1);
  117   parallel_quick_sort(Pivot + 1, End, Comp, TG, Depth - 1);