Home | History | Annotate | Download | only in test

Lines Matching refs:found

51   static inline int doCheck_(ArrType e, int flags, int dummy, std::set<uint64_t>& found, std::map<uint64_t, int> const& expected)
66 auto p = found.insert(value);
72 static inline int run(std::vector<int> e, int flags, int dummy, std::set<uint64_t>& found, std::map<uint64_t, int> const& expected)
74 return doCheck_(e, flags, dummy, found, expected);
78 static inline int run(std::array<int, N> e, int flags, int dummy, std::set<uint64_t>& found, std::map<uint64_t, int> const& expected)
80 return doCheck_(e, flags, dummy, found, expected);
94 std::set<uint64_t> found;
105 group.apply<checkIdx, int>(identity, 0, found, expected);
106 VERIFY_IS_EQUAL(found.size(), 6u);
123 std::set<uint64_t> found;
134 group.apply<checkIdx, int>(identity, 0, found, expected);
135 VERIFY_IS_EQUAL(found.size(), 6u);
151 std::set<uint64_t> found;
163 group.apply<checkIdx, int>(identity7, 0, found, expected);
164 VERIFY_IS_EQUAL(found.size(), 6u);
179 std::set<uint64_t> found;
193 group.apply<checkIdx, int>(identity10, 0, found, expected);
194 VERIFY_IS_EQUAL(found.size(), 32u);
198 found.clear();
208 group_static.apply<checkIdx, int>(identity10, 0, found, expected);
209 VERIFY_IS_EQUAL(found.size(), 32u);
223 std::set<uint64_t> found;
653 group.apply<checkIdx, int>(identity7, 0, found, expected);
654 VERIFY_IS_EQUAL(found.size(), 5040u);