Lines Matching refs:Idx
178 for (unsigned Idx = 1, Size = all_one_c.size(); Idx < Size; ++Idx) { in TEST() local
179 hash_code code = hash_combine_range(&all_one_c[0], &all_one_c[0] + Idx); in TEST()
181 I = code_to_size.insert(std::make_pair(code, Idx)).first; in TEST()
182 EXPECT_EQ(Idx, I->second); in TEST()
186 for (unsigned Idx = 1, Size = all_zero_c.size(); Idx < Size; ++Idx) { in TEST() local
187 hash_code code = hash_combine_range(&all_zero_c[0], &all_zero_c[0] + Idx); in TEST()
189 I = code_to_size.insert(std::make_pair(code, Idx)).first; in TEST()
190 EXPECT_EQ(Idx, I->second); in TEST()
194 for (unsigned Idx = 1, Size = all_one_int.size(); Idx < Size; ++Idx) { in TEST() local
195 hash_code code = hash_combine_range(&all_one_int[0], &all_one_int[0] + Idx); in TEST()
197 I = code_to_size.insert(std::make_pair(code, Idx)).first; in TEST()
198 EXPECT_EQ(Idx, I->second); in TEST()
202 for (unsigned Idx = 1, Size = all_zero_int.size(); Idx < Size; ++Idx) { in TEST() local
203 hash_code code = hash_combine_range(&all_zero_int[0], &all_zero_int[0] + Idx); in TEST()
205 I = code_to_size.insert(std::make_pair(code, Idx)).first; in TEST()
206 EXPECT_EQ(Idx, I->second); in TEST()