/external/webrtc/modules/congestion_controller/goog_cc/ |
D | robust_throughput_estimator_unittest.cc | 86 auto throughput = throughput_estimator.bitrate(); in TEST() local 87 EXPECT_EQ(throughput, send_rate); in TEST() 93 throughput = throughput_estimator.bitrate(); in TEST() 94 EXPECT_EQ(throughput, send_rate); in TEST() 112 auto throughput = throughput_estimator.bitrate(); in TEST() local 113 EXPECT_EQ(throughput, send_rate); in TEST() 124 auto throughput = throughput_estimator.bitrate(); in TEST() local 125 ASSERT_TRUE(throughput.has_value()); in TEST() 126 EXPECT_GE(throughput.value(), DataRate::BytesPerSec(100000)); in TEST() 127 EXPECT_LE(throughput.value(), send_rate); in TEST() [all …]
|
/external/grpc-grpc/test/cpp/qps/ |
D | qps_json_driver_scenarios.bzl | 3 …throughput", "name": "grpc.optimization_target"}, {"int_value": 1, "name": "grpc.minimal_stack"}]}…
|
D | json_run_localhost_scenarios.bzl | 3 …throughput", "name": "grpc.optimization_target"}]}, "client_config": {"security_params": {"use_tes…
|
/external/autotest/frontend/tko/preconfigs/metrics/ |
D | perf | 15 name[1]: dbench (throughput) 20 seriesFilters[1][0][condition]: = 'throughput' 24 name[2]: tbench (throughput) 29 seriesFilters[2][0][condition]: = 'throughput' 66 name[1]: dbench (throughput) 71 seriesFilters[1][0][condition]: = 'throughput' 75 name[2]: tbench (throughput) 80 seriesFilters[2][0][condition]: = 'throughput' 117 name[1]: dbench (throughput) 122 seriesFilters[1][0][condition]: = 'throughput' [all …]
|
D | kernel_compare | 6 globalFilter[1][condition]: = 'throughput' 29 globalFilter[1][condition]: = 'throughput' 52 globalFilter[1][condition]: = 'throughput'
|
/external/iproute2/examples/diffserv/ |
D | regression-testing | 37 Metering: The data throughput should not exceed 2*CIR1 + 2*CIR2 53 Metering: Allocated throughput should not exceed 2*CIR1 + 2*CIR2 58 Metering: Allocated throughput should not exceed CIR1 + 2*CIR2 63 Metering: Allocated throughput should not exceed CIR1 + CIR2 68 Metering: Allocated throughput should not exceed CIR1 84 The data throughput should not exceed 2*CIR1 + 2*CIR2 86 The data throughput should not exceed 2*CIR1 + 5*CIR2 105 Metering: Allocated throughput should not exceed 2*CIR1 + 2*CIR2 110 Metering: Allocated throughput should not exceed CIR1 + 2*CIR2 115 Metering: Allocated throughput should not exceed PIR1+ CIR1 + CIR2 [all …]
|
/external/autotest/server/cros/network/ |
D | iperf_runner.py | 105 throughput_samples = [float(sample.throughput) for sample in samples] 137 if self.throughput is None or self.throughput_dev is None: 140 if not self.throughput_dev and not self.throughput: 144 if self.throughput_dev and not self.throughput: 150 if self.throughput_dev / self.throughput > max_cv: 171 def __init__(self, duration, throughput, percent_loss, argument 181 self.throughput = throughput 193 if self.throughput is not None: 194 ret[prefix + 'throughput'] = '%0.2f%s' % (self.throughput, margin)
|
D | netperf_runner.py | 58 throughput=float(lines[0].split()[4])) 77 throughput=float(udp_tokens[5]), 109 throughput=float(lines[0]) + 150 throughput, throughput_dev = NetperfResult._get_stats( 158 throughput=throughput, throughput_dev=throughput_dev, 177 throughput=None, throughput_dev=None, argument 191 self.throughput = throughput 197 if throughput is None and transaction_rate is None and errors is None:
|
/external/rust/crates/criterion/src/ |
D | benchmark_group.rs | 84 throughput: Option<Throughput>, field 227 pub fn throughput(&mut self, throughput: Throughput) -> &mut Self { in throughput() method 228 self.throughput = Some(throughput); in throughput() 245 throughput: None, in new() 288 self.throughput.clone(), in run_bench() 327 self.throughput.clone(), in run_bench()
|
D | measurement.rs | 30 fn format_throughput(&self, throughput: &Throughput, value: f64) -> String { in format_throughput() 32 let unit = self.scale_throughputs(value, throughput, &mut values); in format_throughput() 54 throughput: &Throughput, in scale_throughputs() 176 throughput: &Throughput, in scale_throughputs() 179 match *throughput { in scale_throughputs()
|
D | connection.rs | 173 IncomingMessage::FormatThroughput { value, throughput } => { in serve_value_formatter() 175 value: formatter.format_throughput(&throughput, value), in serve_value_formatter() 190 throughput, in serve_value_formatter() 193 let unit = formatter.scale_throughputs(typical_value, &throughput, &mut values); in serve_value_formatter() 224 throughput: Throughput, 233 throughput: Throughput, 295 throughput: Vec<Throughput>, field 303 throughput: other.throughput.iter().cloned().collect(), in from()
|
D | report.rs | 44 pub throughput: Option<Throughput>, field 69 pub throughput: Option<Throughput>, field 116 throughput: Option<Throughput>, in new() 155 throughput, in new() 175 match self.throughput { in as_number() 187 match self.throughput { in value_type() 251 self.throughput, in fmt() 580 if let Some(ref throughput) = meas.throughput { in measurement_complete() 585 throughput, in measurement_complete() 588 self.bold(formatter.format_throughput(throughput, typical_estimate.point_estimate)), in measurement_complete() [all …]
|
/external/rust/crates/unicode-xid/benches/ |
D | xid.rs | 12 group.throughput(Throughput::Bytes(unicode_chars.len() as u64)); in bench_unicode_xid() 18 group.throughput(Throughput::Bytes(ascii_chars.len() as u64)); in bench_unicode_xid() 24 group.throughput(Throughput::Bytes(unicode_chars.len() as u64)); in bench_unicode_xid() 38 group.throughput(Throughput::Bytes(ascii_chars.len() as u64)); in bench_unicode_xid()
|
/external/tensorflow/tensorflow/python/platform/ |
D | benchmark.py | 77 throughput=None, extras=None, metrics=None): argument 100 throughput if throughput is not None else -1, 113 if throughput is not None: 114 entry.throughput = throughput 263 throughput=None, argument 287 throughput=throughput, extras=extras, metrics=metrics)
|
/external/rust/crates/criterion/benches/benchmarks/ |
D | custom_measurement.rs | 15 fn format_throughput(&self, throughput: &Throughput, value: f64) -> String { in format_throughput() 16 match *throughput { in format_throughput() 38 throughput: &Throughput, in scale_throughputs() 41 match *throughput { in scale_throughputs()
|
D | with_inputs.rs | 10 group.throughput(Throughput::Bytes(*size as u64)); in from_elem() 19 group.throughput(Throughput::BytesDecimal(*size as u64)); in from_elem()
|
/external/autotest/server/site_tests/network_WiFi_Perf/ |
D | network_WiFi_Perf.py | 101 if result.throughput < must_expected_throughput: 104 test_type, must_expected_throughput, result.throughput) 106 if result.throughput < should_expected_throughput: 111 result.throughput) 117 result.throughput) 123 'measured_Tput=%0.2f' % result.throughput 205 values = [sample.throughput for sample in results]
|
/external/eigen/bench/tensors/ |
D | benchmark_main.cc | 169 char throughput[100]; in RunWithArg() local 170 throughput[0] = '\0'; in RunWithArg() 174 snprintf(throughput, sizeof(throughput), " %8.2f MFlops/s", mflops_processed/seconds); in RunWithArg() 189 iterations, g_benchmark_total_time_ns/iterations, throughput); in RunWithArg()
|
/external/bcc/tools/ |
D | netqtop.py | 49 if args.throughput: 110 if args.throughput: 130 if args.throughput: 153 if args.throughput:
|
D | tcptop_example.txt | 4 tcptop summarizes throughput by host and port. Eg: 25 The output in each listing is sorted by total throughput (send then receive), 28 The other IPv4 sessions had such low throughput they rounded to zero. 110 Summarize TCP send/recv throughput by host
|
/external/tensorflow/tensorflow/python/kernel_tests/nn_ops/ |
D | xent_op_test.py | 99 throughput = gb_processed_input / r["wall_time"] 101 "Throughput: %0.03g GB/s" % (name, r["wall_time"], throughput)) 126 throughput = gb_processed_input / r["wall_time"] 128 "Throughput: %0.03g GB/s" % (name, r["wall_time"], throughput))
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | iterator_ops_test.cc | 82 CellReader<int64_t> throughput("/tensorflow/data/bytes_fetched"); in TEST_F() local 87 EXPECT_EQ(throughput.Delta(), 0.0); in TEST_F() 105 EXPECT_GT(throughput.Delta(), 0); in TEST_F()
|
/external/libevent/test/ |
D | bench_httpclient.c | 183 double throughput; in main() local 215 throughput = total_n_handled / in main() 231 throughput, in main()
|
/external/python/cpython2/Demo/sockets/ |
D | README | 11 throughput.py Client and server to measure TCP throughput.
|
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/ |
D | hotplug05.txt | 24 measure current throughput 27 if [ throughput falls below $THRESHHOLD ]; then
|