Home
last modified time | relevance | path

Searched refs:min_element (Results 1 – 21 of 21) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dmin_element.h52 min_element(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) { in min_element() function
63 min_element(_ForwardIterator __first, _ForwardIterator __last) { in min_element() function
64 return std::min_element(__first, __last, __less<>()); in min_element()
H A Dmin.h49 return *std::min_element(__t.begin(), __t.end(), __less<>()); in min()
H A Dranges_min_element.h71 inline constexpr auto min_element = __min_element::__fn{};
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.inc570 using std::min_element;
573 using std::ranges::min_element;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp316 auto EarliestSU = std::min_element( in schedule()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h91 return std::min_element(Data.get(), Data.get() + Length) - Data.get(); in minIndex()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegAllocPBQP.h466 std::min_element(NotProvablyAllocatableNodes.begin(), in reduce()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp359 std::min_element(Candidates.begin(), Candidates.end(), in findPointersWrittenOnForwardingPath()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dalgorithm50 constexpr I min_element(I first, S last, Comp comp = {}, Proj proj = {});
54 constexpr borrowed_iterator_t<R> min_element(R&& r, Comp comp = {}, Proj proj = {});
1667 min_element(ForwardIterator first, ForwardIterator last);
1671 min_element(ForwardIterator first, ForwardIterator last, Compare comp);
1838 #include <__algorithm/min_element.h>
H A Dlibcxx.imp58 { include: [ "<__algorithm/min_element.h>", "private", "<algorithm>", "public" ] },
H A Dvalarray351 #include <__algorithm/min_element.h>
2464 return *std::min_element(__begin_, __end_);
H A Dmodule.modulemap.in702 …gorithm_min_element [system] { header "__algorithm/min_element.h" }
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp596 GepNode *Min = *std::min_element(S.begin(), S.end(), NodeOrder); in common()
H A DHexagonGenInsert.cpp1317 IFListType::iterator MinI = std::min_element(LL.begin(), LL.end(), IFO); in selectCandidates()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp895 std::min_element(C.begin(), C.end(), [](const auto &A, const auto &B) { in vectorizeChain()
/freebsd-14.2/lib/libc++/
H A DMakefile331 ALG_HEADERS+= min_element.h
H A Dmodule.modulemap702 …gorithm_min_element [system] { header "__algorithm/min_element.h" }
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2666 OrigN = *std::min_element(OrigN->pred_begin(), OrigN->pred_end(), in getNextBugPath()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc2174 SYMBOL(min_element, std::, <algorithm>)
3652 SYMBOL(min_element, std::ranges::, <algorithm>)
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp10764 return std::make_tuple(*std::min_element(std::begin(Sizes), std::end(Sizes)), in getNDSWDS()
/freebsd-14.2/contrib/bsnmp/tests/
H A Dcatch.hpp7668 auto xj1 = *std::min_element(first + (j + 1), last); in weighted_average_quantile()