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

References

tools/llvm-xray/xray-graph.cpp
  259   if (begin == end) return;
  261   std::nth_element(begin, begin + MedianOff, end);
  261   std::nth_element(begin, begin + MedianOff, end);
  262   S.Median = *(begin + MedianOff);
  264   std::nth_element(begin, begin + Pct90Off, end);
  264   std::nth_element(begin, begin + Pct90Off, end);
  265   S.Pct90 = *(begin + Pct90Off);
  267   std::nth_element(begin, begin + Pct99Off, end);
  267   std::nth_element(begin, begin + Pct99Off, end);
  268   S.Pct99 = *(begin + Pct99Off);