/external/autotest/utils/ |
D | site_check_dut_usage.py | 82 def calculate_usage(self, durations): argument 89 for q_time, s_time, f_time, machine in durations: 96 avg_job_run_time = self._total_seconds(total_run_time) / len(durations) 98 len(durations)) 137 durations = self.find_all_durations() 138 if not durations: 141 self.calculate_usage(durations)
|
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/test/time/ |
D | DurationOverflowTest.kt | 16 private val durations = ChronoUnit.values().map { it.duration } in <lambda>() constant 21 for (duration in durations) { in <lambda>() 36 for (duration in durations) { in testOnTimeout() 47 for (duration in durations) { in <lambda>() 54 for (duration in durations) { in <lambda>()
|
/external/guava/android/guava-tests/test/com/google/common/cache/ |
D | CacheBuilderFactory.java | 64 CacheBuilderFactory withExpireAfterWrites(Set<DurationSpec> durations) { in withExpireAfterWrites() argument 65 this.expireAfterWrites = Sets.newLinkedHashSet(durations); in withExpireAfterWrites() 69 CacheBuilderFactory withExpireAfterAccesses(Set<DurationSpec> durations) { in withExpireAfterAccesses() argument 70 this.expireAfterAccesses = Sets.newLinkedHashSet(durations); in withExpireAfterAccesses() 74 CacheBuilderFactory withRefreshes(Set<DurationSpec> durations) { in withRefreshes() argument 75 this.refreshes = Sets.newLinkedHashSet(durations); in withRefreshes()
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | CacheBuilderFactory.java | 64 CacheBuilderFactory withExpireAfterWrites(Set<DurationSpec> durations) { in withExpireAfterWrites() argument 65 this.expireAfterWrites = Sets.newLinkedHashSet(durations); in withExpireAfterWrites() 69 CacheBuilderFactory withExpireAfterAccesses(Set<DurationSpec> durations) { in withExpireAfterAccesses() argument 70 this.expireAfterAccesses = Sets.newLinkedHashSet(durations); in withExpireAfterAccesses() 74 CacheBuilderFactory withRefreshes(Set<DurationSpec> durations) { in withRefreshes() argument 75 this.refreshes = Sets.newLinkedHashSet(durations); in withRefreshes()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
D | AbstractManifestWriter.java | 44 long[] durations = new long[startSamples.length]; in calculateFragmentDurations() local 56 durations[currentFragment] += entry.getDelta(); in calculateFragmentDurations() 61 return durations; in calculateFragmentDurations()
|
/external/autotest/server/cros/bluetooth/ |
D | bluetooth_adapter_adv_monitor_tests.py | 718 def check_records_interleaving(self, durations, records, expect_cycles): argument 731 actual_cycle = len(records) / len(durations.keys()) 762 if span < durations[nstate] -\ 766 if span > durations[nstate] +\ 840 durations = {'allowlist': 300, 'no filter': 500} 843 durations = {key: value * 0.001 for key, value in durations.items()} 844 return durations 859 durations = self.get_interleave_scan_durations() 860 interleave_period = sum(durations.values()) 873 durations, records, cycles) [all …]
|
/external/pigweed/pw_chrono/ |
D | docs.rst | 19 points and durations. This means users do not have to worry about clock overflow 20 risk as long as rational durations and time points as used, i.e. within a range
|
/external/boringssl/src/tool/ |
D | speed.cc | 294 std::vector<unsigned> durations; in SpeedRSAKeyGen() local 308 durations.push_back(iteration_end - iteration_start); in SpeedRSAKeyGen() 316 std::sort(durations.begin(), durations.end()); in SpeedRSAKeyGen() 321 const size_t n = durations.size(); in SpeedRSAKeyGen() 334 unsigned min = durations[0]; in SpeedRSAKeyGen() 335 unsigned median = n & 1 ? durations[n / 2] in SpeedRSAKeyGen() 336 : (durations[n / 2 - 1] + durations[n / 2]) / 2; in SpeedRSAKeyGen() 337 unsigned max = durations[n - 1]; in SpeedRSAKeyGen()
|
/external/rust/crates/quiche/deps/boringssl/src/tool/ |
D | speed.cc | 293 std::vector<unsigned> durations; in SpeedRSAKeyGen() local 307 durations.push_back(iteration_end - iteration_start); in SpeedRSAKeyGen() 315 std::sort(durations.begin(), durations.end()); in SpeedRSAKeyGen() 320 const size_t n = durations.size(); in SpeedRSAKeyGen() 333 unsigned min = durations[0]; in SpeedRSAKeyGen() 334 unsigned median = n & 1 ? durations[n / 2] in SpeedRSAKeyGen() 335 : (durations[n / 2 - 1] + durations[n / 2]) / 2; in SpeedRSAKeyGen() 336 unsigned max = durations[n - 1]; in SpeedRSAKeyGen()
|
/external/autotest/venv/ |
D | pytest.ini | 5 --durations=5
|
/external/python/pybind11/docs/advanced/cast/ |
D | chrono.rst | 8 into durations. 68 Time delta are converted into durations with microsecond precision. 75 Floats that are passed to C++ as durations be interpreted as a number of
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowAppOpsManager.java | 314 final LongSparseLongArray durations = new LongSparseLongArray(); in toOpEntry() local 315 durations.put(key, DURATION); in toOpEntry() 330 ClassParameter.from(LongSparseLongArray.class, durations), in toOpEntry()
|
/external/autotest/server/site_tests/audio_AudioArtifacts/ |
D | control.mute_headphone | 12 CRITERIA = "This test will fail if the recorded audio contains artifacts or the durations of mute n…
|
/external/tensorflow/tensorflow/core/profiler/protobuf/ |
D | pod_stats.proto | 36 // Breakdown the durations for each event type in micro-seconds.
|
/external/perfetto/protos/perfetto/metrics/android/ |
D | g2d_metric.proto | 36 // max/min/avg G2d frame durations for all instances.
|
D | startup_metric.proto | 25 // A simplified view of the task state durations for a thread 127 // Field 3 contained Slice with a sum of durations for matching slices.
|
/external/protobuf/src/google/protobuf/ |
D | duration.proto | 64 // } else if (durations.seconds > 0 && duration.nanos < 0) { 111 // `seconds` field and a positive or negative `nanos` field. For durations
|
/external/bcc/tools/ |
D | tcpstates_example.txt | 32 Trace TCP session state changes and durations
|
/external/igt-gpu-tools/benchmarks/wsim/ |
D | README | 55 2-4. Now three batches are sent to RCS with durations of 0.5-1.5ms (random 82 Batch durations can also be specified as infinite by using the '*' in the
|
/external/golang-protobuf/ptypes/duration/ |
D | duration.proto | 111 // `seconds` field and a positive or negative `nanos` field. For durations
|
/external/python/cpython3/Lib/test/ |
D | test_signal.py | 1147 durations = [times[i+1] - times[i] for i in range(len(times) - 1)] 1148 med = statistics.median(durations)
|
/external/pigweed/pw_trace/ |
D | docs.rst | 198 Scope API measures durations until the object loses scope. This can for 204 Function API measures durations until the function returns. This is the only
|
/external/libtextclassifier/abseil-cpp/ |
D | README.md | 92 points in time, durations of time, and formatting and parsing time within
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/ |
D | README.md | 92 points in time, durations of time, and formatting and parsing time within
|
/external/abseil-cpp/ |
D | README.md | 92 points in time, durations of time, and formatting and parsing time within
|