Lines Matching defs:odd
68 bool odd(int i) { return i % 2; }
74 const auto i3 = std::find_if(i1, i2, odd);
95 const auto i3 = std::find_if(std::execution::sequenced_policy(), i1, i2, odd);
116 const auto i3 = std::find_if_not(i1, i2, odd);
138 odd);
208 const auto i5 = std::find_first_of(i1, i2, i3, i4, odd);
232 i1, i2, i3, i4, odd);
302 const auto i5 = std::find_end(i1, i2, i3, i4, odd);
326 i1, i2, i3, i4, odd);
482 const auto i5 = std::search(i1, i2, i3, i4, odd);
506 i1, i2, i3, i4, odd);