Lines Matching refs:odd
58 bool odd(int i) { return i % 2; } in odd() function
64 const auto i3 = std::find_if(i1, i2, odd); in test_find_if1()
85 const auto i3 = std::find_if(std::execution::sequenced_policy(), i1, i2, odd); in test_find_if2()
106 const auto i3 = std::find_if_not(i1, i2, odd); in test_find_if_not1()
128 odd); in test_find_if_not2()
198 const auto i5 = std::find_first_of(i1, i2, i3, i4, odd); in test_find_first_of3()
222 i1, i2, i3, i4, odd); in test_find_first_of4()
292 const auto i5 = std::find_end(i1, i2, i3, i4, odd); in test_find_end3()
316 i1, i2, i3, i4, odd); in test_find_end4()
472 const auto i5 = std::search(i1, i2, i3, i4, odd); in test_search3()
496 i1, i2, i3, i4, odd); in test_search4()