/third_party/grpc/src/csharp/Grpc.IntegrationTesting/ |
D | ClientRunners.cs | 211 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 …]
|
D | StressTestClient.cs | 146 var stopwatch = Stopwatch.StartNew(); in RunBodyAsync() 150 stopwatch.Stop(); in RunBodyAsync() 151 histogram.AddObservation(stopwatch.Elapsed.TotalSeconds * SecondsToNanos); in RunBodyAsync()
|
D | XdsInteropClient.cs | 143 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/ |
D | test_polynomial.cpp | 36 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 …]
|
D | performance.hpp | 76 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/ |
D | performance_test.hpp | 49 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 …]
|
D | miller_rabin_performance.hpp | 28 struct stopwatch struct 31 stopwatch() in stopwatch() argument 58 stopwatch<boost::chrono::high_resolution_clock> c; in test_miller_rabin() argument
|
D | sf_performance.hpp | 61 struct stopwatch struct 64 stopwatch() in stopwatch() function 196 stopwatch<boost::chrono::high_resolution_clock> c; in time_proc()
|
D | voronoi_performance.cpp | 33 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/ |
D | BenchmarkUtil.cs | 46 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/ |
D | mpfr_precision.cpp | 59 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()
|
D | hypergeometric_luke_algorithms.cpp | 55 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/ |
D | build_benchmarks.dart | 29 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();
|
D | analysis.dart | 77 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/ |
D | performance_overlay_layer.cc | 32 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/ |
D | RouteGuideImpl.cs | 73 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/ |
D | org.gnome.clocks.desktop | 225 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/ |
D | animation_bench.dart | 19 BenchmarkingBinding(this.stopwatch); 21 final Stopwatch stopwatch; 25 stopwatch.start(); 32 stopwatch.stop();
|
/third_party/boost/libs/safe_numerics/test/ |
D | test_performance.cpp | 81 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/ |
D | debug.dart | 57 final Stopwatch stopwatch = Stopwatch()..start(); 59 stopwatch.stop(); 60 debugPrint('Action "$description" took ${stopwatch.elapsed}');
|
/third_party/boost/libs/regex/performance/ |
D | performance.cpp | 52 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/ |
D | test_rat_float_interconv.cpp | 33 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/ |
D | Makefile.am | 49 cwebp_SOURCES = cwebp.c stopwatch.h 58 dwebp_SOURCES = dwebp.c stopwatch.h
|
/third_party/flutter/skia/third_party/externals/libwebp/examples/ |
D | Makefile.am | 49 cwebp_SOURCES = cwebp.c stopwatch.h 58 dwebp_SOURCES = dwebp.c stopwatch.h
|
/third_party/flutter/flutter/dev/devicelab/lib/framework/ |
D | runner.dart | 93 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...');
|