Home
last modified time | relevance | path

Searched refs:pResI0 (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/algorithm/test/
Dtransform_inclusive_scan_test.cpp58 const int pResI0[] = { 1, 4, 9, 16, 25}; // with identity in transform_inclusive_scan_test() local
63 BOOST_CHECK(sa == sizeof(pResI0) / sizeof(pResI0[0])); // just to be sure in transform_inclusive_scan_test()
69 …_scan_test(Iter(ia), Iter(ia + i), std::plus<int>(), identity<int>(), pResI0, pResI0 + i); in transform_inclusive_scan_test()
149 const int pResI0[] = { 1, 4, 9, 16, 25}; // with identity in transform_inclusive_scan_init_test() local
158 BOOST_CHECK(sa == sizeof(pResI0) / sizeof(pResI0[0])); // just to be sure in transform_inclusive_scan_init_test()
168 …it_test(Iter(ia), Iter(ia + i), std::plus<int>(), identity<int>(), 0, pResI0, pResI0 + i); in transform_inclusive_scan_init_test()
Dtransform_exclusive_scan_test.cpp58 const int pResI0[] = { 0, 1, 4, 9, 16}; // with identity in test() local
67 BOOST_CHECK(sa == sizeof(pResI0) / sizeof(pResI0[0])); // just to be sure in test()
77 … test(Iter(ia), Iter(ia + i), std::plus<int>(), identity<int>(), 0, pResI0, pResI0 + i); in test()