| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | max_element.h | 39 max_element(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) { in max_element() function 45 max_element(_ForwardIterator __first, _ForwardIterator __last) { in max_element() function 46 return std::max_element(__first, __last, __less<>()); in max_element()
|
| H A D | max.h | 49 return *std::max_element(__t.begin(), __t.end(), __less<>()); in max()
|
| H A D | ranges_max_element.h | 59 inline constexpr auto max_element = __max_element::__fn{};
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.cpp | 311 auto Max = llvm::max_element(Indices); in visitKnownRecord() 326 auto Max = llvm::max_element(Indices); in visitKnownRecord() 496 auto Max = llvm::max_element(Indices); in visitKnownRecord()
|
| H A D | DumpOutputStyle.cpp | 1073 auto MaxID = llvm::max_element(IS->name_ids()); in dumpStringTableFromPdb() 1838 auto Max = llvm::max_element(Names, [](StringRef S1, StringRef S2) { in dumpSectionContribs()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | SchedulerStatistics.cpp | 108 const auto It = llvm::max_element(IssueWidthPerCycle); in printSchedulerStats()
|
| H A D | BottleneckAnalysis.cpp | 274 llvm::max_element(Nodes, [](const DGNode &Lhs, const DGNode &Rhs) { in getCriticalSequence()
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | algorithm.cppm | |
| H A D | algorithm.inc | 575 using std::max_element; 578 using std::ranges::max_element;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | SVEIntrinsicOpts.cpp | 143 *llvm::max_element(PTrues, [](auto *PTrue1, auto *PTrue2) { in coalescePTrueIntrinsicCalls()
|
| /freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
| H A D | glue_algorithm_defs.h | |
| H A D | glue_algorithm_impl.h | |
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | PDBFile.cpp | 89 return *llvm::max_element(ContainerLayout.StreamSizes); in getMaxStreamSize()
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangOptionDocEmitter.cpp | 338 int SphinxWorkaroundSuffix = NextSuffix[*std::max_element( in emitOption()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | RegAllocPBQP.h | 73 *std::max_element(ColCounts, ColCounts + M.getCols() - 1); in MatrixMetadata()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopLoadElimination.cpp | 355 llvm::max_element(Candidates, in findPointersWrittenOnForwardingPath()
|
| H A D | GVNSink.cpp | 702 unsigned VNumToSink = llvm::max_element(VNums, llvm::less_second())->first; in analyzeInstructionForSinking()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 1986 template <typename R> auto max_element(R &&Range) { 1987 return std::max_element(adl_begin(Range), adl_end(Range)); 1990 template <typename R, typename Compare> auto max_element(R &&Range, Compare C) { 1991 return std::max_element(adl_begin(Range), adl_end(Range), C);
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | GIMatchTree.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsDelaySlotFiller.cpp | 876 MachineBasicBlock *S = *std::max_element( in selectSuccBB()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIMachineScheduler.cpp | 901 if (*llvm::max_element(CurrentBottomUpReservedDependencyColoring) == 0 && in colorEndsAccordingToDependencies() 902 *llvm::max_element(CurrentTopDownReservedDependencyColoring) == 0) in colorEndsAccordingToDependencies()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOWriter.cpp | 129 return *llvm::max_element(Ends); in totalSize()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DataLayout.cpp | 901 auto Max = llvm::max_element(LegalIntWidths); in getLargestLegalIntTypeSizeInBits()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCUDA.cpp | 334 CUDAFunctionPreference BestCFP = GetCFP(*std::max_element( in EraseUnwantedMatches()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | algorithm | 58 …constexpr I ranges::max_element(I first, S last, Comp comp = {}, Proj proj = {}); … 62 …constexpr borrowed_iterator_t<R> ranges::max_element(R&& r, Comp comp = {}, Proj proj = {}); … 1735 max_element(ForwardIterator first, ForwardIterator last); 1739 max_element(ForwardIterator first, ForwardIterator last, Compare comp); 1858 #include <__algorithm/max_element.h>
|