Searched refs:f_int_1 (Results 1 – 7 of 7) sorted by relevance
23 constexpr int f_int_1(int x) { return x; } in f_int_1() function74 static_assert(1 == ex::apply(f_int_1, t), ""); in test_1()79 constexpr int (*fp)(int) = f_int_1; in test_1()
37 int f_int_1(int x) { return count += x; } in f_int_1() function289 assert(1 == ex::apply(f_int_1, t)); in test_int_1()296 int (*fp)(int) = f_int_1; in test_int_1()
132 int f_int_1(int i) in f_int_1() function156 assert(std::bind(f_int_1, _1)(2) == 3); in test_int_1()157 assert(std::bind(f_int_1, 2)() == 3); in test_int_1()161 int (*fp)(int) = f_int_1; in test_int_1()
142 int f_int_1(int i) in f_int_1() function167 assert(std::bind(f_int_1, _1)(i) == 3); in test_int_1()168 assert(std::bind(f_int_1, i)() == 3); in test_int_1()172 int (*fp)(int) = f_int_1; in test_int_1()
102 int f_int_1(int i) in f_int_1() function125 std::reference_wrapper<int (int)> r1(f_int_1); in test_int_1()131 int (*fp)(int) = f_int_1; in test_int_1()
178 int f_int_1(int i) in f_int_1() function201 std::function<int (int)> r1(f_int_1); in test_int_1()207 int (*fp)(int) = f_int_1; in test_int_1()
10 int f_int_1(int x) { return x; } in f_int_1() function