Home | History | Annotate | Download | only in benchmarks

Lines Matching full:accumulatedtime

119     int64_t accumulatedTime = 0;
140 accumulatedTime += static_cast<int64_t>(std::chrono::duration_cast<std::chrono::nanoseconds>(
142 accumulatedTime /= kNumIterations;
145 accumulatedTime << "ns" << endl;
157 uint64_t accumulatedTime = 0;
173 accumulatedTime += (timeEnd - timeStart).count();
176 accumulatedTime /= (numLoops * kNumIterations);
178 << "bytes: " << accumulatedTime << "ns" << endl;
190 uint64_t accumulatedTime = 0;
207 accumulatedTime += (timeEnd - timeStart).count();
210 accumulatedTime /= (numLoops * kNumIterations);
212 << "bytes: " << accumulatedTime << "ns" << endl;
223 uint64_t accumulatedTime = 0;
240 accumulatedTime += (timeEnd - timeStart).count();
243 accumulatedTime /= (numLoops * kNumIterations);
245 << "bytes: " << accumulatedTime << "ns" << endl;
256 uint64_t accumulatedTime = 0;
271 accumulatedTime += (timeEnd - timeStart).count();
274 accumulatedTime /= (numLoops * kNumIterations);
276 << "bytes: " << accumulatedTime << "ns" << endl;
287 uint64_t accumulatedTime = 0;
302 accumulatedTime += (timeEnd - timeStart).count();
308 accumulatedTime /= (numLoops * kNumIterations);
310 << "bytes: " << accumulatedTime << "ns" << endl;
321 uint64_t accumulatedTime = 0;
335 accumulatedTime += (timeEnd - timeStart).count();
341 accumulatedTime /= (numLoops * kNumIterations);
343 << "bytes: " << accumulatedTime << "ns" << endl;
354 uint64_t accumulatedTime = 0;
367 accumulatedTime += (timeEnd - timeStart).count();
373 accumulatedTime /= (numLoops * kNumIterations);
375 << "bytes: " << accumulatedTime << "ns" << endl;
386 uint64_t accumulatedTime = 0;
403 accumulatedTime += (timeEnd - timeStart).count();
409 accumulatedTime /= (numLoops * kNumIterations);
411 << "bytes: " << accumulatedTime << "ns" << endl;