HomeSort by relevance Sort by last modified time
    Searched refs:latency (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/content/browser/renderer_host/
event_with_latency_info.h 25 ui::LatencyInfo latency; member in class:content::EventWithLatencyInfo
28 : event(e), latency(l) {}
40 // for Telemetry latency test since it will represent the longest
41 // latency.
42 if (other.latency.trace_id >= 0 &&
43 (latency.trace_id < 0 || other.latency.trace_id < latency.trace_id))
44 latency = other.latency;
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
wakeup-latency-report 2 # description: system-wide min/max/avg wakeup latency
3 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/wakeup-latency.pl
  /external/blktrace/btt/
latency.c 23 static inline void latency_out(FILE *ofp, __u64 tstamp, __u64 latency)
26 fprintf(ofp, "%lf %lf\n", TO_SEC(tstamp), TO_SEC(latency));
57 void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency)
59 plat_x2c(dip->q2d_plat_handle, tstamp, latency);
60 latency_out(dip->q2d_ofp, tstamp, latency);
63 void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency)
65 plat_x2c(dip->d2c_plat_handle, tstamp, latency);
66 latency_out(dip->d2c_ofp, tstamp, latency);
69 void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency)
71 plat_x2c(dip->q2c_plat_handle, tstamp, latency);
    [all...]
Android.mk 5 latency.c misc.c output.c proc.c seek.c trace.c \
  /external/chromium_org/chrome/browser/devtools/
devtools_network_conditions.h 23 double latency,
30 double latency() const { return latency_; } function in class:DevToolsNetworkConditions
devtools_network_conditions.cc 25 double latency,
29 latency_(latency),
devtools_network_protocol_handler.cc 72 double latency = 0.0; local
73 if (!params->GetDouble(names::kParamLatency, &latency))
75 if (latency < 0.0)
76 latency = 0.0;
92 offline, latency, download_throughput, upload_throughput));
  /external/chromium_org/chrome/browser/extensions/api/diagnostics/
diagnostics_api.cc 35 double latency) {
40 result.latency = latency;
diagnostics_api_chromeos.cc 28 double latency)>
33 double* latency) {
34 // Parses the result and returns IP and latency.
50 if (!info->GetDouble("avg", latency))
62 double latency; local
63 if (!succeeded || !ParseResult(status, &ip, &latency)) {
68 latency);
diagnostics_api.h 49 double latency);
  /external/linux-tools-perf/perf-3.12.0/arch/sh/lib/
memcpy-sh4.S 30 mov r4,r2 ! 5 MT (0 cycles latency)
32 mov.l @(r0,r5),r7 ! 21 LS (2 cycles latency)
39 3: mov.l @(r0,r5),r1 ! 21 LS (latency=2) ! NMLK
40 mov r7, r3 ! 5 MT (latency=0) ! RQPO
45 mov r1,r6 ! 5 MT (latency=0)
49 mov r1, r7 ! 5 MT (latency=0)
56 3: mov.l @(r0,r5),r1 ! 21 LS (latency=2) ! KLMN
57 mov r7,r3 ! 5 MT (latency=0) ! OPQR
63 mov r1,r6 ! 5 MT (latency=0)
66 mov r1,r7 ! 5 MT (latency=0
    [all...]
  /external/chromium_org/cc/base/
latency_info_swap_promise_monitor.h 22 LatencyInfoSwapPromiseMonitor(ui::LatencyInfo* latency,
latency_info_swap_promise.cc 28 LatencyInfoSwapPromise::LatencyInfoSwapPromise(const ui::LatencyInfo& latency)
29 : latency_(latency) {
  /external/chromium_org/ppapi/tests/
test_audio.h 41 PP_TimeDelta latency,
49 PP_TimeDelta latency);
59 PP_TimeDelta latency);
64 PP_TimeDelta latency);
  /external/iproute2/tc/
q_tbf.c 29 fprintf(stderr, " [ peakrate KBPS ] [ latency TIME ] ");
45 unsigned buffer=0, mtu=0, mpu=0, latency=0; local
56 if (opt.limit || latency) {
57 fprintf(stderr, "Double \"limit/latency\" spec\n");
65 } else if (matches(*argv, "latency") == 0) {
67 if (opt.limit || latency) {
68 fprintf(stderr, "Double \"limit/latency\" spec\n");
71 if (get_time(&latency, *argv)) {
72 explain1("latency");
175 if (opt.limit == 0 && latency == 0)
223 double latency; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
rendering_stats.py 25 # Name for a main thread scroll update latency event.
27 # Name for a gesture scroll update latency event.
37 its latency history.
54 Input event latency is the time from when the input event is created to
63 If the latency starts with a
65 classified as a scroll update instead of a normal input latency measure.
86 latency = (end_time - start_time) / 1000.0
87 input_event_latencies.append((start_time, event.name, latency))
90 return [(name, latency) for _, name, latency in input_event_latencies
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
gesture_event_queue.cc 157 const ui::LatencyInfo& latency) {
178 event_with_latency.latency.AddNewLatencyFrom(latency);
290 DCHECK_LE(last_event->latency.trace_id, gesture_event.latency.trace_id);
291 scroll_event.latency = last_event->latency;
310 DCHECK_LE(second_last_event.latency.trace_id,
311 scroll_event.latency.trace_id);
312 scroll_event.latency = second_last_event.latency
    [all...]
  /external/chromium_org/remoting/test/
protocol_perftest.cc 168 void ReceiveFrame(base::TimeDelta* latency) {
173 if (latency) {
176 *latency = base::TimeTicks::Now() - timestamp;
185 base::TimeDelta latency; local
187 ReceiveFrame(&latency);
189 if (max_latency && latency > *max_latency) {
190 *max_latency = latency;
409 base::TimeDelta latency; local
411 ReceiveFrame(&latency);
412 LOG(INFO) << "First frame latency: " << latency.InMillisecondsF() << "ms"
486 base::TimeDelta latency; local
    [all...]
  /external/chromium_org/content/browser/android/in_process/
synchronous_input_event_filter.cc 31 ui::LatencyInfo latency;
32 return handler_.Run(routing_id, &input_event, &latency);
  /external/chromium_org/ppapi/api/
ppb_audio.idl 24 * @param[in] latency How long before the audio data is to be presented.
30 [in, version=1.1] PP_TimeDelta latency,
73 * the interface. For performance-critical applications (i.e. low-latency
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 38 * compute a DAG of the dependencies (RAW ordering with latency, WAW
73 this->latency = 1 * chans * math_latency;
76 this->latency = 2 * chans * math_latency;
82 this->latency = 3 * chans * math_latency;
87 this->latency = 4 * chans * math_latency;
90 this->latency = 8 * chans * math_latency;
94 /* minimum latency, max is 12 rounds. */
95 this->latency = 5 * chans * math_latency;
98 this->latency = 2;
110 int latency; member in class:schedule_node
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 38 * compute a DAG of the dependencies (RAW ordering with latency, WAW
73 this->latency = 1 * chans * math_latency;
76 this->latency = 2 * chans * math_latency;
82 this->latency = 3 * chans * math_latency;
87 this->latency = 4 * chans * math_latency;
90 this->latency = 8 * chans * math_latency;
94 /* minimum latency, max is 12 rounds. */
95 this->latency = 5 * chans * math_latency;
98 this->latency = 2;
110 int latency; member in class:schedule_node
    [all...]
  /build/target/board/generic/
BoardConfig.mk 53 # This phase offset allows adjustment of the minimum latency from application
57 # minimum latency of two vsync periods because the app and SurfaceFlinger
59 # result in the minimum latency being:
63 # Note that reducing this latency makes it more likely for the applications
65 # the latency will end up being an additional vsync period, and animations
66 # will hiccup. Therefore, this latency should be tuned somewhat
  /external/chromium_org/components/network_time/
network_time_tracker.cc 69 base::TimeDelta latency,
77 // network_time_uncertainty_ too much by a particularly long latency.
85 // Estimate that the time was set midway through the latency time.
86 network_time_ticks_ = now - task_delay - latency / 2;
90 // 1 & 2 are the ones used to compute the latency, 3 is the Now() from when
94 resolution + latency + kNumTimeMeasurements *
  /external/chromium_org/third_party/webrtc/sound/
pulseaudiosoundsystem.h 138 int latency,
146 int latency,
154 int latency,

Completed in 903 milliseconds

1 2 3 4 5 6 7