Lines Matching refs:make_tuple
170 std::make_tuple(0.0, benchmark::Counter::kIs1024, "0"),
171 std::make_tuple(999.0, benchmark::Counter::kIs1024, "999"),
172 std::make_tuple(1000.0, benchmark::Counter::kIs1024, "1000"),
173 std::make_tuple(1024.0, benchmark::Counter::kIs1024, "1Ki"),
174 std::make_tuple(1000 * 1000.0, benchmark::Counter::kIs1024,
176 std::make_tuple(1024 * 1024.0, benchmark::Counter::kIs1024, "1Mi"),
177 std::make_tuple(1000 * 1000 * 1000.0, benchmark::Counter::kIs1024,
179 std::make_tuple(1024 * 1024 * 1024.0, benchmark::Counter::kIs1024,
181 std::make_tuple(0.0, benchmark::Counter::kIs1000, "0"),
182 std::make_tuple(999.0, benchmark::Counter::kIs1000, "999"),
183 std::make_tuple(1000.0, benchmark::Counter::kIs1000, "1k"),
184 std::make_tuple(1024.0, benchmark::Counter::kIs1000, "1.024k"),
185 std::make_tuple(1000 * 1000.0, benchmark::Counter::kIs1000, "1M"),
186 std::make_tuple(1024 * 1024.0, benchmark::Counter::kIs1000,
188 std::make_tuple(1000 * 1000 * 1000.0, benchmark::Counter::kIs1000,
190 std::make_tuple(1024 * 1024 * 1024.0, benchmark::Counter::kIs1000,