Lines Matching defs:odd
63 bool odd(int i) { return i % 2; }
69 const auto i3 = std::find_if(i1, i2, odd);
88 const auto i3 = std::find_if(std::execution::sequenced_policy(), i1, i2, odd);
107 const auto i3 = std::find_if_not(i1, i2, odd);
127 odd);
191 const auto i5 = std::find_first_of(i1, i2, i3, i4, odd);
213 i1, i2, i3, i4, odd);
277 const auto i5 = std::find_end(i1, i2, i3, i4, odd);
299 i1, i2, i3, i4, odd);
441 const auto i5 = std::search(i1, i2, i3, i4, odd);
463 i1, i2, i3, i4, odd);