| 338 | } |
| 339 | |
| 340 | static void BufferOutputStreamSmallWrites( |
| 341 | benchmark::State& state) { // NOLINT non-const reference |
| 342 | // A 700-byte datum |
| 343 | std::string datum; |
| 344 | for (int i = 0; i < 100; ++i) { |
| 345 | datum += "abcdefg"; |
| 346 | } |
| 347 | return BenchmarkBufferOutputStream(datum, state); |
| 348 | } |
| 349 | |
| 350 | static void BufferOutputStreamLargeWrites( |
| 351 | benchmark::State& state) { // NOLINT non-const reference |
nothing calls this directly
no test coverage detected