Home
last modified time | relevance | path

Searched refs:latency (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/external/v8/src/compiler/backend/mips64/
Dinstruction-scheduler-mips64.cc603 int latency = 0; in DmulLatency() local
605 latency = Latency::DMUL; in DmulLatency()
607 latency = Latency::DMULT + Latency::MFLO; in DmulLatency()
610 latency += 1; in DmulLatency()
612 return latency; in DmulLatency()
616 int latency = 0; in MulhLatency() local
618 latency = Latency::MUH; in MulhLatency()
620 latency = Latency::MULT + Latency::MFHI; in MulhLatency()
623 latency += 1; in MulhLatency()
625 return latency; in MulhLatency()
[all …]
/external/igt-gpu-tools/benchmarks/ezbench.d/
Dgem_latency.test15 name="gem:exec:latency:$n"
22 name="gem:latency:dispatch:$p"
34 __gem:latency:wait__() {
40 name="gem:latency:wait:$p"
42 eval "${name}_run() { __gem:latency:wait__ \$1 $p ; } "
44 name="gem:latency:wait:$p:fence"
46 eval "${name}_run() { __gem:latency:wait__ \$1 $p -F ; } "
50 __gem:latency:cpu__() {
56 name="gem:latency:cpu:$p"
58 eval "${name}_run() { __gem:latency:cpu__ \$1 $p ; } "
[all …]
/external/v8/src/compiler/backend/mips/
Dinstruction-scheduler-mips.cc577 int latency = in ShlPairLatency() local
580 return latency + Latency::BRANCH + 2; in ShlPairLatency()
582 return latency + 2; in ShlPairLatency()
591 int latency = in ShrPairLatency() local
594 return latency + Latency::BRANCH + 2; in ShrPairLatency()
596 return latency + 2; in ShrPairLatency()
658 int latency = 0; in MuluLatency() local
659 if (!is_operand_register) latency++; in MuluLatency()
661 return latency + Latency::MULTU + 2; in MuluLatency()
663 return latency + Latency::MULU + Latency::MUHU; in MuluLatency()
[all …]
/external/blktrace/btt/
Dlatency.c23 static inline void latency_out(FILE *ofp, __u64 tstamp, __u64 latency) in latency_out() argument
26 fprintf(ofp, "%lf %lf\n", TO_SEC(tstamp), TO_SEC(latency)); in latency_out()
55 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency) in latency_q2d() argument
57 plat_x2c(dip->q2d_plat_handle, tstamp, latency); in latency_q2d()
58 latency_out(dip->q2d_ofp, tstamp, latency); in latency_q2d()
61 void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency) in latency_d2c() argument
63 plat_x2c(dip->d2c_plat_handle, tstamp, latency); in latency_d2c()
64 latency_out(dip->d2c_ofp, tstamp, latency); in latency_d2c()
67 void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency) in latency_q2c() argument
69 plat_x2c(dip->q2c_plat_handle, tstamp, latency); in latency_q2c()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/ARM/
Dcortex-a57-misched-vfma.ll11 ; > VMULS common latency = 5
15 ; > VMULS read-advanced latency to VMLAS = 0
20 ; > VMLAS common latency = 9
24 ; > VMLAS read-advanced latency to the next VMLAS = 4
32 ; > VMLAS not-optimized latency to VMOVRS = 9
50 ; > VMULfd common latency = 5
54 ; VMULfd read-advanced latency to VMLAfd = 0
59 ; > VMLAfd common latency = 9
63 ; > VMLAfd read-advanced latency to the next VMLAfd = 4
71 ; > VMLAfd not-optimized latency to VMOVRRD = 9
[all …]
/external/walt/docs/
DAudioLatency.md3 Audio output latency as measured by WALT is the time that passes from the moment an application
4 decides to output a tone until it can be detected via the headphone jack. Microphone latency is
7 Low latency audio IO on Android can be achieved via JNI C/C++ code.
20 In order to avoid warm up latency during audio playback it is
21 …s.github.io/android-audio-high-performance/guides/audio-output-latency.html#avoid-warm-up-latency).
26 and the latency reported by WALT app is the time from the
28 …ibute considerable variance but little interesting information if included in the reported latency.
31 The reported latency is the time from the moment the last frame in a buffer was recorded until the
35 TODO: Is the round trip latency expected to be Recording latency + Playback latency + one buffer le…
49 \* WALT clock synchronization accuracy is about 1 ms hence the relative error for recording latency
[all …]
/external/autotest/client/cros/
Dhttp_speed.py45 def BenchmarkOneDirection(latency, label, url, benchmark_function): argument
65 target = max(20 * latency, 10)
80 adjusted_transfer_time = max(transfer_time - latency, 0.01)
107 latency = TimeTransferDown(download_url_format_string, 1)
109 logging.info('Latency is %s' % latency)
112 latency,
118 latency,
/external/iproute2/tc/
Dq_tbf.c45 unsigned buffer = 0, mtu = 0, mpu = 0, latency = 0; in tbf_parse_opt() local
59 if (latency) { in tbf_parse_opt()
70 if (latency) { in tbf_parse_opt()
78 if (get_time(&latency, *argv)) { in tbf_parse_opt()
191 if (opt.limit == 0 && latency == 0) { in tbf_parse_opt()
205 double lim = rate64*(double)latency/TIME_UNITS_PER_SEC + buffer; in tbf_parse_opt()
208 double lim2 = prate64*(double)latency/TIME_UNITS_PER_SEC + mtu; in tbf_parse_opt()
257 double latency; in tbf_print_opt() local
308 latency = TIME_UNITS_PER_SEC*(qopt->limit/(double)rate64) - tc_core_tick2time(qopt->buffer); in tbf_print_opt()
312 if (lat2 > latency) in tbf_print_opt()
[all …]
/external/bcc/tools/
Dbiolatency_example.txt5 of I/O latency (time), printing this as a histogram when Ctrl-C is hit.
30 The latency of the disk I/O is measured from the issue to the device to its
33 This example output shows a large mode of latency from about 128 microseconds
35 between 1 and 8 ms, which is the expected block device latency for
38 The highest latency seen while tracing was between 65 and 131 milliseconds:
100 How the I/O latency distribution changes over time can be seen.
104 The -Q option begins measuring I/O latency from when the request was first
105 queued in the kernel, and includes queuing latency:
130 This better reflects the latency suffered by the application (if it is
135 queues of their own, which are always included in the latency, with or
[all …]
Dnfsdist_example.txt4 latency as a power-of-2 histogram. For example:
9 Tracing NFS operation latency... Hit Ctrl-C to end.
88 This "latency" is measured from when the operation was issued from the VFS
90 RPC latency, network latency, file system CPU cycles, file system locks, run
91 queue latency, etc. This is a better measure of the latency suffered by
104 Tracing NFS operation latency... Hit Ctrl-C to end.
144 Summarize NFS operation latency
157 ./nfsdist # show operation latency as a histogram
Dzfsdist_example.txt5 latency as a power-of-2 histogram. It has been written to work on ZFS on Linux
9 Tracing ZFS operation latency... Hit Ctrl-C to end.
54 This output shows a bimodal distribution for read latency, with a faster
60 The write latency is also bimodal, with a faster mode between 128 and 511 us,
63 This "latency" is measured from when the operation was issued from the VFS
66 file system locks, run queue latency, etc. This is a better measure of the
67 latency suffered by applications reading from the file system than measuring
79 Tracing ZFS operation latency... Hit Ctrl-C to end.
167 Summarize ZFS operation latency
180 ./zfsdist # show operation latency as a histogram
Dext4dist_example.txt5 latency as a power-of-2 histogram. For example:
8 Tracing ext4 operation latency... Hit Ctrl-C to end.
44 This output shows a bi-modal distribution for read latency, with a faster
46 microseconds. The count column shows how many events fell into that latency
50 This "latency" is measured from when the operation was issued from the VFS
53 queue latency, etc. This is a better measure of the latency suffered by
66 Tracing ext4 operation latency... Hit Ctrl-C to end.
177 Summarize ext4 operation latency
190 ./ext4dist # show operation latency as a histogram
Dbtrfsdist_example.txt5 latency as a power-of-2 histogram. For example:
8 Tracing btrfs operation latency... Hit Ctrl-C to end.
38 This output shows a bi-modal distribution for read latency, with a faster
44 This "latency" is measured from when the operation was issued from the VFS
47 queue latency, etc. This is a better measure of the latency suffered by
60 Tracing btrfs operation latency... Hit Ctrl-C to end.
163 Summarize btrfs operation latency
176 ./btrfsdist # show operation latency as a histogram
Dxfsdist_example.txt5 latency as a power-of-2 histogram. For example:
8 Tracing XFS operation latency... Hit Ctrl-C to end.
32 This output shows a bi-modal distribution for read latency, with a faster
38 This "latency" is measured from when the operation was issued from the VFS
41 queue latency, etc. This is a better measure of the latency suffered by
54 Tracing XFS operation latency... Hit Ctrl-C to end.
139 Summarize XFS operation latency
152 ./xfsdist # show operation latency as a histogram
Drunqlat_example.txt4 This program summarizes scheduler run queue latency as a histogram, showing
10 Tracing run queue latency... Hit Ctrl-C to end.
39 the reason for the low latency mode. The high latency mode will be the
47 Tracing run queue latency... Hit Ctrl-C to end.
80 Tracing run queue latency... Hit Ctrl-C to end.
136 Tracing run queue latency... Hit Ctrl-C to end.
153 Back to a microsecond scale, this time there is little run queue latency past 1
160 Tracing run queue latency... Hit Ctrl-C to end.
185 Tracing run queue latency... Hit Ctrl-C to end.
466 Tracing run queue latency... Hit Ctrl-C to end.
[all …]
Drunqslower_example.txt4 runqslower shows high latency scheduling times between tasks being
8 Tracing run queue latency higher than 10000 us
37 Trace high run queue latency
47 ./runqslower # trace run queue latency higher than 10000 us (default)
48 ./runqslower 1000 # trace run queue latency higher than 1000 us
/external/walt/pywalt/
DREADME.md5 * Currently supprots tap and drag (scroll) latency measurements
16 Run a latency test using WALT Latency Timer
37 See the [tap latency section](../docs/usage/WALT_usage.md#tap-latency) in Android app usage doc.
39 Below is output from an example run of a tap latency test that reads touch events from `/dev/input/…
48 Starting tap latency test
64 Median latency, down: 23.9, up: 47.1
68 See the [drag latency section](../docs/usage/WALT_usage.md#dragscroll-latency) in Android app usage…
70 Below is a drag latency measurement of the trackpad on Asus Flip. The trackpad input device is `/de…
76 Drag latency uses evtest and must therefore be run as root.
80 Starting drag latency test
[all …]
/external/bcc/tools/lib/
Ducalls.py240 .replace("DEFINE_LATENCY", "#define LATENCY" if args.latency else "") \
246 if args.latency:
264 if args.latency:
278 if args.latency:
289 return sorted(data, key=lambda kv: kv[1][1 if args.latency else 0])
292 if args.latency:
298 if args.latency:
315 if args.latency:
323 if args.latency:
/external/mesa3d/src/intel/compiler/
Dbrw_schedule_instructions.cpp76 int latency; member in schedule_node
125 this->latency = 1 * chans * math_latency; in set_latency_gen4()
128 this->latency = 2 * chans * math_latency; in set_latency_gen4()
134 this->latency = 3 * chans * math_latency; in set_latency_gen4()
139 this->latency = 4 * chans * math_latency; in set_latency_gen4()
142 this->latency = 8 * chans * math_latency; in set_latency_gen4()
147 this->latency = 5 * chans * math_latency; in set_latency_gen4()
150 this->latency = 2; in set_latency_gen4()
182 latency = is_haswell ? 16 : 18; in set_latency_gen7()
208 latency = 14; in set_latency_gen7()
[all …]
/external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
DOvicDetectionResult.java25 public Long latency = -1L; field in OvicDetectionResult
40 public void resetTo(Long latency, int id) { in resetTo() argument
42 this.latency = latency; in resetTo()
67 String textToShow = latency + "ms"; in toString()
/external/u-boot/drivers/tpm/
Dtpm_tis_st33zp24_spi.c73 int latency; member
132 memset(tx_buf + total_length, TPM_DUMMY_BYTE, phy->latency); in st33zp24_spi_write()
134 total_length += phy->latency; in st33zp24_spi_write()
178 phy->latency + tpm_size); in st33zp24_spi_read8_reg()
179 total_length += phy->latency + tpm_size; in st33zp24_spi_read8_reg()
222 int latency = 1, status = 0; in st33zp24_spi_evaluate_latency() local
226 while (!status && latency < MAX_SPI_LATENCY) { in st33zp24_spi_evaluate_latency()
227 phy->latency = latency; in st33zp24_spi_evaluate_latency()
230 latency++; in st33zp24_spi_evaluate_latency()
234 if (latency == MAX_SPI_LATENCY) in st33zp24_spi_evaluate_latency()
[all …]
/external/cpuinfo/test/dmesg/
Dnexus10.log260 <4>[ 1.057490] mali mali.0: start latency exceeded, new value 875 ns
261 <4>[ 1.057767] mali mali.0: state restore latency exceeded, new value 208084 ns
262 <4>[ 1.057883] mali mali.0: stop latency exceeded, new value 875 ns
334 <4>[ 1.163421] mali mali.0: stop latency exceeded, new value 958 ns
335 <4>[ 1.163504] mali mali.0: state save latency exceeded, new value 7625 ns
336 <4>[ 1.163909] pd-g3d: Power-off latency exceeded, new value 287125 ns
422 <4>[ 1.843322] samsung-i2s samsung-i2s.0: start latency exceeded, new value 833 ns
423 <4>[ 1.843442] samsung-i2s samsung-i2s.0: state restore latency exceeded, new value 1042 ns
424 <4>[ 1.843558] samsung-i2s samsung-i2s.0: stop latency exceeded, new value 875 ns
425 <4>[ 1.843723] samsung-i2s samsung-i2s.0: state save latency exceeded, new value 958 ns
[all …]
/external/webrtc/webrtc/sound/
Dpulseaudiosoundsystem.cc77 static void FillPlaybackBufferAttr(int latency, in FillPlaybackBufferAttr() argument
79 attr->maxlength = latency; in FillPlaybackBufferAttr()
80 attr->tlength = latency; in FillPlaybackBufferAttr()
81 attr->minreq = latency / kPlaybackRequestFactor; in FillPlaybackBufferAttr()
160 pa_usec_t latency; in LatencyUsecs() local
163 int re = symbol_table()->pa_stream_get_latency()(stream_, &latency, in LatencyUsecs()
176 return -latency; in LatencyUsecs()
178 return latency; in LatencyUsecs()
587 int latency) in PulseAudioOutputStream() argument
589 configured_latency_(latency), in PulseAudioOutputStream()
[all …]
/external/bcc/tests/python/
Dtest_trace3.py20 self.latency = b.get_table("latency", c_uint, c_ulong)
35 for key, leaf in self.latency.items():
38 self.assertEqual(len(list(self.latency.keys())), len(self.latency))
/external/u-boot/arch/arm/dts/
Duniphier-pro5.dtsi44 clock-latency-ns = <300>;
48 clock-latency-ns = <300>;
52 clock-latency-ns = <300>;
56 clock-latency-ns = <300>;
60 clock-latency-ns = <300>;
64 clock-latency-ns = <300>;
68 clock-latency-ns = <300>;
72 clock-latency-ns = <300>;
76 clock-latency-ns = <300>;
80 clock-latency-ns = <300>;
[all …]

12345678910>>...25