/external/llvm-project/llvm/lib/MC/ |
D | MCSchedule.cpp | 90 Optional<double> Throughput; in getReciprocalThroughput() local 99 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp; in getReciprocalThroughput() 101 if (Throughput.hasValue()) in getReciprocalThroughput() 102 return 1.0 / Throughput.getValue(); in getReciprocalThroughput() 136 Optional<double> Throughput; in getReciprocalThroughput() local 143 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp; in getReciprocalThroughput() 145 if (Throughput.hasValue()) in getReciprocalThroughput() 146 return 1.0 / Throughput.getValue(); in getReciprocalThroughput()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSchedule.cpp | 90 Optional<double> Throughput; in getReciprocalThroughput() local 99 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp; in getReciprocalThroughput() 101 if (Throughput.hasValue()) in getReciprocalThroughput() 102 return 1.0 / Throughput.getValue(); in getReciprocalThroughput() 136 Optional<double> Throughput; in getReciprocalThroughput() local 143 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp; in getReciprocalThroughput() 145 if (Throughput.hasValue()) in getReciprocalThroughput() 146 return 1.0 / Throughput.getValue(); in getReciprocalThroughput()
|
/external/rust/crates/criterion/benches/benchmarks/ |
D | custom_measurement.rs | 4 Criterion, Throughput, 15 fn format_throughput(&self, throughput: &Throughput, value: f64) -> String { in format_throughput() argument 17 Throughput::Bytes(bytes) => { in format_throughput() 20 Throughput::Elements(elems) => format!( in format_throughput() 38 throughput: &Throughput, in scale_throughputs() argument 42 Throughput::Bytes(bytes) => { in scale_throughputs() 49 Throughput::Elements(elems) => { in scale_throughputs()
|
D | with_inputs.rs | 3 use criterion::{criterion_group, BenchmarkId, Criterion, Throughput}; 10 group.throughput(Throughput::Bytes(*size as u64)); in from_elem()
|
D | iter_with_large_drop.rs | 3 use criterion::{criterion_group, Benchmark, Criterion, Throughput}; 15 .throughput(Throughput::Bytes(SIZE as u64)), in large_drop()
|
D | iter_with_large_setup.rs | 3 use criterion::{criterion_group, Benchmark, Criterion, Throughput}; 18 .throughput(Throughput::Bytes(SIZE as u64)), in large_setup()
|
/external/rust/crates/criterion/src/ |
D | measurement.rs | 8 use crate::Throughput; 31 fn format_throughput(&self, throughput: &Throughput, value: f64) -> String { in format_throughput() argument 55 throughput: &Throughput, in scale_throughputs() argument 152 throughput: &Throughput, in scale_throughputs() argument 156 Throughput::Bytes(bytes) => self.bytes_per_second(bytes as f64, typical, values), in scale_throughputs() 157 Throughput::Elements(elems) => self.elements_per_second(elems as f64, typical, values), in scale_throughputs()
|
D | csv_report.rs | 4 use crate::Throughput; 37 Some(Throughput::Bytes(bytes)) => (Some(format!("{}", bytes)), Some("bytes")), in write_data() 38 Some(Throughput::Elements(elems)) => (Some(format!("{}", elems)), Some("elements")), in write_data()
|
D | benchmark.rs | 8 use crate::{Bencher, Criterion, DurationExt, Mode, PlotConfiguration, SamplingMode, Throughput}; 88 throughput: Option<Box<dyn Fn(&T) -> Throughput>>, 98 throughput: Option<Throughput>, 310 pub fn throughput(mut self, throughput: Throughput) -> Benchmark<M> { in throughput() 467 F: Fn(&T) -> Throughput + 'static, in throughput() 567 throughput: Option<Throughput>, in execute_benchmark() argument
|
D | report.rs | 10 use crate::{PlotConfiguration, Throughput}; 42 pub throughput: Option<Throughput>, 66 pub throughput: Option<Throughput>, 113 throughput: Option<Throughput>, in new() argument 173 Some(Throughput::Bytes(n)) | Some(Throughput::Elements(n)) => Some(n as f64), in as_number() 183 Some(Throughput::Bytes(_)) => Some(ValueType::Bytes), in value_type() 184 Some(Throughput::Elements(_)) => Some(ValueType::Elements), in value_type()
|
D | connection.rs | 2 use crate::Throughput; 209 throughput: Throughput, 218 throughput: Throughput, 280 throughput: Vec<Throughput>,
|
D | benchmark_group.rs | 9 use crate::{Bencher, Criterion, DurationExt, Mode, PlotConfiguration, SamplingMode, Throughput}; 84 throughput: Option<Throughput>, 227 pub fn throughput(&mut self, throughput: Throughput) -> &mut Self { in throughput()
|
/external/libcups/examples/ |
D | laserjet-basic.drv | 64 Throughput 10 77 Throughput 19 84 Throughput 25
|
D | laserjet-pjl.drv | 77 Throughput 10 90 Throughput 19 97 Throughput 25
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
D | Support.cpp | 99 double Throughput = static_cast<double>(ResourceCycles) / MCDesc.NumUnits; in computeBlockRThroughput() local 100 Max = std::max(Max, Throughput); in computeBlockRThroughput()
|
/external/llvm-project/llvm/lib/MCA/ |
D | Support.cpp | 99 double Throughput = static_cast<double>(ResourceCycles) / MCDesc.NumUnits; in computeBlockRThroughput() local 100 Max = std::max(Max, Throughput); in computeBlockRThroughput()
|
/external/bcc/examples/networking/neighbor_sharing/ |
D | README.txt | 42 Size Size Size Time Throughput 51 Size Size Size Time Throughput
|
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/ |
D | CombineFlowsBenchmark.kt | 15 @BenchmarkMode(Mode.Throughput) in <lambda>()
|
D | FlowFlattenMergeBenchmark.kt | 19 @BenchmarkMode(Mode.Throughput) in <lambda>()
|
D | CombineTwoFlowsBenchmark.kt | 16 @BenchmarkMode(Mode.Throughput) in <lambda>()
|
/external/iptables/extensions/ |
D | libxt_tos.t | 3 -m tos --tos Maximize-Throughput;-m tos --tos 0x08/0x3f;OK
|
/external/libcups/filter/ |
D | raster-driver.shtml | 111 <a href='ref-ppdcfile.html#Throughput'>Throughput</a> 10 124 <a href='ref-ppdcfile.html#Throughput'>Throughput</a> 19 131 <a href='ref-ppdcfile.html#Throughput'>Throughput</a> 25
|
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/ |
D | hotplug05.txt | 28 echo "Throughput has fallen below threshhold."
|
/external/autotest/client/tests/unixbench/ |
D | control | 14 - Execl Throughput - measure the number of execl calls per second.
|
/external/autotest/client/tests/unixbench5/ |
D | control | 13 - Execl Throughput - measure the number of execl calls per second.
|