Home
last modified time | relevance | path

Searched refs:begin2 (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/pstl/test/std/algorithms/alg.sorting/alg.lex.comparison/
H A Dlexicographical_compare.pass.cpp27 …operator()(ExecutionPolicy&& exec, Iterator1 begin1, Iterator1 end1, Iterator2 begin2, Iterator2 e… in operator ()()
30 const bool expected = std::lexicographical_compare(begin1, end1, begin2, end2, pred); in operator ()()
31 const bool actual = std::lexicographical_compare(exec, begin1, end1, begin2, end2, pred); in operator ()()
37 …operator()(ExecutionPolicy&& exec, Iterator1 begin1, Iterator1 end1, Iterator2 begin2, Iterator2 e… in operator ()()
39 const bool expected = std::lexicographical_compare(begin1, end1, begin2, end2); in operator ()()
40 const bool actual = std::lexicographical_compare(exec, begin1, end1, begin2, end2); in operator ()()
/llvm-project-15.0.7/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp125 uptr begin2 = params->allocator_caches[i] + sizeof(AllocatorCache); in LockStuffAndStopTheWorld() local
126 ScanRangeForPointers(begin2, end, &params->argument->frontier, "TLS", in LockStuffAndStopTheWorld()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/
H A Dranges_mismatch.pass.cpp33 constexpr void test_iterators(Iter1 begin1, Iter1 end1, Iter2 begin2, Iter2 end2, int* expected1, i… in test_iterators() argument
36 … std::move(begin2), sentinel_wrapper<Iter2>(std::move(end2))); in test_iterators()