Home
last modified time | relevance | path

Searched defs:is_even (Results 1 – 17 of 17) sorted by relevance

/llvm-project/libcxx/test/libcxx/fuzzing/
H A Dpartition.pass.cpp19 auto is_even = [](auto x) { return x % 2 == 0; }; in LLVMFuzzerTestOneInput() local
H A Dpartition_copy.pass.cpp20 auto is_even = [](auto t) { in LLVMFuzzerTestOneInput() local
H A Dstable_partition.pass.cpp19 auto is_even = [](auto b) { return b.key % 2 == 0; }; in LLVMFuzzerTestOneInput() local
/llvm-project/pstl/test/std/algorithms/alg.nonmodifying/
H A Dnone_of.pass.cpp79 auto is_even = [&](float64_t v) { in operator ()() local
H A Dany_of.pass.cpp81 auto is_even = [&](float64_t v) { in operator ()() local
H A Dall_of.pass.cpp95 auto is_even = [&](float64_t v) { in operator ()() local
H A Dfind_if.pass.cpp80 auto is_even = [&](float64_t v) { in operator ()() local
H A Dcount.pass.cpp85 auto is_even = [&](float64_t v) { in operator ()() local
/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/
H A Dpartition_copy.pass.cpp91 auto is_even = [&](float64_t v) { in operator ()() local
H A Dis_partitioned.pass.cpp79 auto is_even = [&](float64_t v) { in operator ()() local
H A Dpartition.pass.cpp152 auto is_even = [&](float64_t v) { in operator ()() local
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.elements/
H A Dgeneral.pass.cpp51 auto is_even = [](const auto x) { return x % 2 == 0; }; in main() local
/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/
H A Dreplace_copy.pass.cpp77 auto is_even = [&](float64_t v) { in operator ()() local
H A Dreplace.pass.cpp140 auto is_even = [&](float64_t v) { in operator ()() local
H A Dremove.pass.cpp124 auto is_even = [&](float64_t v) { in operator ()() local
/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/alg.copy/
H A Dcopy_if.pass.cpp116 auto is_even = [&](float64_t v) { in operator ()() local
/llvm-project/clang/test/SemaCXX/
H A Dcxx2b-consteval-propagate.cpp29 consteval bool is_even(int i) { return i % 2 == 0; } in is_even() function