Home
last modified time | relevance | path

Searched refs:stopwatch (Results 1 – 25 of 49) sorted by relevance

12

/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DClientRunners.cs211 var stopwatch = new Stopwatch(); in RunUnary()
222 stopwatch.Restart(); in RunUnary()
224 stopwatch.Stop(); in RunUnary()
227 … threadLocalHistogram.Value.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunUnary()
237 var stopwatch = new Stopwatch(); in RunUnaryAsync()
241 stopwatch.Restart(); in RunUnaryAsync()
243 stopwatch.Stop(); in RunUnaryAsync()
246 … threadLocalHistogram.Value.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunUnaryAsync()
256 var stopwatch = new Stopwatch(); in RunStreamingPingPongAsync()
262 stopwatch.Restart(); in RunStreamingPingPongAsync()
[all …]
DStressTestClient.cs146 var stopwatch = Stopwatch.StartNew(); in RunBodyAsync()
150 stopwatch.Stop(); in RunBodyAsync()
151 histogram.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunBodyAsync()
DXdsInteropClient.cs143 var stopwatch = Stopwatch.StartNew(); in RunSingleChannelAsync()
156 …s = (int) Math.Max(0, (1000 * rpcsStarted / options.Qps / rpcs.Count) - stopwatch.ElapsedMilliseco… in RunSingleChannelAsync()
162 stopwatch.Stop(); in RunSingleChannelAsync()
/third_party/boost/libs/math/reporting/performance/
Dtest_polynomial.cpp36 stopwatch<boost::chrono::high_resolution_clock> w; in test_add()
46 stopwatch<boost::chrono::high_resolution_clock> w; in test_subtract()
56 stopwatch<boost::chrono::high_resolution_clock> w; in test_add_int()
66 stopwatch<boost::chrono::high_resolution_clock> w; in test_subtract_int()
76 stopwatch<boost::chrono::high_resolution_clock> w; in test_multiply()
86 stopwatch<boost::chrono::high_resolution_clock> w; in test_multiply_int()
96 stopwatch<boost::chrono::high_resolution_clock> w; in test_divide()
106 stopwatch<boost::chrono::high_resolution_clock> w; in test_divide_int()
117 stopwatch<boost::chrono::high_resolution_clock> w; in test_gcd()
128 stopwatch<boost::chrono::high_resolution_clock> w; in test_inplace_add()
[all …]
Dperformance.hpp76 struct stopwatch struct
79 stopwatch() in stopwatch() argument
104 stopwatch<boost::chrono::high_resolution_clock> w; in exec_timed_test() argument
/third_party/boost/libs/multiprecision/performance/
Dperformance_test.hpp49 struct stopwatch struct
52 stopwatch() in stopwatch() argument
86 stopwatch<boost::chrono::high_resolution_clock> w; in test_add() argument
96 stopwatch<boost::chrono::high_resolution_clock> w; in test_subtract()
106 stopwatch<boost::chrono::high_resolution_clock> w; in test_add_int()
116 stopwatch<boost::chrono::high_resolution_clock> w; in test_subtract_int()
126 stopwatch<boost::chrono::high_resolution_clock> w; in test_multiply()
136 stopwatch<boost::chrono::high_resolution_clock> w; in test_multiply_int()
146 stopwatch<boost::chrono::high_resolution_clock> w; in test_divide()
156 stopwatch<boost::chrono::high_resolution_clock> w; in test_divide_int()
[all …]
Dmiller_rabin_performance.hpp28 struct stopwatch struct
31 stopwatch() in stopwatch() argument
58 stopwatch<boost::chrono::high_resolution_clock> c; in test_miller_rabin() argument
Dsf_performance.hpp61 struct stopwatch struct
64 stopwatch() in stopwatch() function
196 stopwatch<boost::chrono::high_resolution_clock> c; in time_proc()
Dvoronoi_performance.cpp33 struct stopwatch struct
36 stopwatch() in stopwatch() argument
157 stopwatch<boost::chrono::high_resolution_clock> w; in test()
/third_party/grpc/src/csharp/Grpc.Core/Utils/
DBenchmarkUtil.cs46 var stopwatch = new Stopwatch(); in RunBenchmark()
47 stopwatch.Start(); in RunBenchmark()
52 stopwatch.Stop(); in RunBenchmark()
53 logger.Info("Elapsed time: {0}ms", stopwatch.ElapsedMilliseconds); in RunBenchmark()
54 …Info("Ops per second: {0}", (int)((double)benchmarkIterations * 1000 / stopwatch.ElapsedMilliseco… in RunBenchmark()
/third_party/boost/libs/multiprecision/example/
Dmpfr_precision.cpp59 struct stopwatch struct
64 stopwatch() : m_start(clock_type::now()) { } in stopwatch() function
66 stopwatch(const stopwatch& other) : m_start(other.m_start) { } in stopwatch() function
68 stopwatch& operator=(const stopwatch& other) in operator =() argument
74 ~stopwatch() { } in ~stopwatch() argument
226 stopwatch<std::chrono::high_resolution_clock> my_stopwatch; in main()
Dhypergeometric_luke_algorithms.cpp55 struct stopwatch struct
60 stopwatch() : m_start(clock_type::now()) { } in stopwatch() argument
62 stopwatch(const stopwatch& other) : m_start(other.m_start) { } in stopwatch() function
64 stopwatch& operator=(const stopwatch& other) in operator =() argument
70 ~stopwatch() { } in ~stopwatch() argument
645 stopwatch<STD_CHRONO::high_resolution_clock> my_stopwatch; in main()
/third_party/flutter/flutter/dev/devicelab/lib/tasks/
Dbuild_benchmarks.dart29 final Stopwatch stopwatch = Stopwatch()
40 final int initialBuildMilliseconds = stopwatch.elapsedMilliseconds;
41 stopwatch
53 final int secondBuildMilliseconds = stopwatch.elapsedMilliseconds;
63 stopwatch
75 final int thirdBuildMilliseconds = stopwatch.elapsedMilliseconds;
76 stopwatch.stop();
Danalysis.dart77 final Stopwatch stopwatch = Stopwatch();
79 stopwatch.start();
81 stopwatch.stop();
83 return stopwatch.elapsedMicroseconds / (1000.0 * 1000.0);
/third_party/flutter/engine/flutter/flow/layers/
Dperformance_overlay_layer.cc32 const Stopwatch& stopwatch, in VisualizeStopWatch() argument
46 stopwatch.Visualize(canvas, visualization_rect); in VisualizeStopWatch()
50 double max_ms_per_frame = stopwatch.MaxDelta().ToMillisecondsF(); in VisualizeStopWatch()
51 double average_ms_per_frame = stopwatch.AverageDelta().ToMillisecondsF(); in VisualizeStopWatch()
/third_party/grpc/examples/csharp/RouteGuide/RouteGuideServer/
DRouteGuideImpl.cs73 var stopwatch = new Stopwatch(); in RecordRoute()
74 stopwatch.Start(); in RecordRoute()
91 stopwatch.Stop(); in RecordRoute()
98 ElapsedTime = (int)(stopwatch.ElapsedMilliseconds / 1000) in RecordRoute()
/third_party/glib/gio/tests/desktop-files/usr/applications/
Dorg.gnome.clocks.desktop225 Comment[en_GB]=Clocks for world times, plus alarms, stopwatch and a timer
241 Comment[id]=Jam untuk waktu dunia, alarm, stopwatch dan penghitung waktu
253 Comment[nl]=Wereldklok, wekker, stopwatch en timer
277 Comment=Clocks for world times, plus alarms, stopwatch and a timer
278 Keywords[af]=time;timer;alarm;world clock;stopwatch;time zone;tyd;tydteller;wekker;wêreldtyd;stopho…
281 Keywords[as]=time;timer;alarm;world clock;stopwatch;time zone;
283 …омняне;аларма;часовник;секундомер;пояс;хронометър;time;timer;alarm;world clock;stopwatch;time zone;
291 …ρο;ξυπνητήρι;παγκόσμιο ρολόι;χρονόμετρο;ώρα ζώνης;time;timer;alarm;world clock;stopwatch;time zone;
292 Keywords[en_GB]=time;timer;alarm;world clock;stopwatch;time zone;
297 Keywords[fa]=time;timer;alarm;world clock;stopwatch;time zone;زمان;زمانسنج;زنگ;ساعت جهانی;منطقه زما…
[all …]
/third_party/flutter/flutter/dev/benchmarks/microbenchmarks/lib/stocks/
Danimation_bench.dart19 BenchmarkingBinding(this.stopwatch);
21 final Stopwatch stopwatch;
25 stopwatch.start();
32 stopwatch.stop();
/third_party/boost/libs/safe_numerics/test/
Dtest_performance.cpp81 class stopwatch class
85 stopwatch() : in stopwatch() function in stopwatch
95 const stopwatch<std::chrono::high_resolution_clock> c; in test()
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Ddebug.dart57 final Stopwatch stopwatch = Stopwatch()..start();
59 stopwatch.stop();
60 debugPrint('Action "$description" took ${stopwatch.elapsed}');
/third_party/boost/libs/regex/performance/
Dperformance.cpp52 struct stopwatch struct
55 stopwatch() in stopwatch() argument
81 stopwatch<boost::chrono::high_resolution_clock> w; in exec_timed_test() argument
/third_party/boost/libs/multiprecision/test/
Dtest_rat_float_interconv.cpp33 struct stopwatch struct
36 stopwatch() in stopwatch() function
147 stopwatch<boost::chrono::high_resolution_clock> w; in test_round_trip()
203 stopwatch<boost::chrono::high_resolution_clock> w; in test_random_rationals()
/third_party/skia/third_party/externals/libwebp/examples/
DMakefile.am49 cwebp_SOURCES = cwebp.c stopwatch.h
58 dwebp_SOURCES = dwebp.c stopwatch.h
/third_party/flutter/skia/third_party/externals/libwebp/examples/
DMakefile.am49 cwebp_SOURCES = cwebp.c stopwatch.h
58 dwebp_SOURCES = dwebp.c stopwatch.h
/third_party/flutter/flutter/dev/devicelab/lib/framework/
Drunner.dart93 final Stopwatch stopwatch = Stopwatch()..start();
109 if (stopwatch.elapsed > const Duration(seconds: 10))
110 … print('VM service still not ready after ${stopwatch.elapsed}: $error\nContinuing to retry...');

12