Home
last modified time | relevance | path

Searched refs:max_element (Results 1 – 25 of 47) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dmax_element.h39 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 Dmax.h49 return *std::max_element(__t.begin(), __t.end(), __less<>()); in max()
H A Dranges_max_element.h59 inline constexpr auto max_element = __max_element::__fn{};
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp311 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 DDumpOutputStyle.cpp1073 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 DSchedulerStatistics.cpp108 const auto It = llvm::max_element(IssueWidthPerCycle); in printSchedulerStats()
H A DBottleneckAnalysis.cpp274 llvm::max_element(Nodes, [](const DGNode &Lhs, const DGNode &Rhs) { in getCriticalSequence()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.cppm
H A Dalgorithm.inc575 using std::max_element;
578 using std::ranges::max_element;
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp143 *llvm::max_element(PTrues, [](auto *PTrue1, auto *PTrue2) { in coalescePTrueIntrinsicCalls()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dglue_algorithm_defs.h
H A Dglue_algorithm_impl.h
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp89 return *llvm::max_element(ContainerLayout.StreamSizes); in getMaxStreamSize()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp338 int SphinxWorkaroundSuffix = NextSuffix[*std::max_element( in emitOption()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h73 *std::max_element(ColCounts, ColCounts + M.getCols() - 1); in MatrixMetadata()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp355 llvm::max_element(Candidates, in findPointersWrittenOnForwardingPath()
H A DGVNSink.cpp702 unsigned VNumToSink = llvm::max_element(VNums, llvm::less_second())->first; in analyzeInstructionForSinking()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1986 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 DGIMatchTree.cpp
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp876 MachineBasicBlock *S = *std::max_element( in selectSuccBB()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp901 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 DMachOWriter.cpp129 return *llvm::max_element(Ends); in totalSize()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp901 auto Max = llvm::max_element(LegalIntWidths); in getLargestLegalIntTypeSizeInBits()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCUDA.cpp334 CUDAFunctionPreference BestCFP = GetCFP(*std::max_element( in EraseUnwantedMatches()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dalgorithm58 …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>

12