HomeSort by relevance Sort by last modified time
    Searched full:average (Results 1 - 25 of 1892) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/snakeyaml/src/test/resources/pyyaml/
spec-02-02.data 2 avg: 0.278 # Batting average
spec-02-15.data 6 0.288 Batting Average
spec-06-05.data 5 avg: # Average
spec-02-16.data 7 0.278 Batting Average
  /external/snakeyaml/src/test/resources/specification/
example2_2.yaml 2 avg: 0.278 # Batting average
example2_15.yaml 6 0.288 Batting Average
example2_15_dumped.yaml 5 0.288 Batting Average
example2_16.yaml 7 0.278 Batting Average
  /external/llvm/test/YAMLParser/
spec-02-02.test 4 avg: 0.278 # Batting average
spec-02-15.test 8 0.288 Batting Average
spec-06-05.test 7 avg: # Average
spec-02-16.test 9 0.278 Batting Average
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 17 * @param threshold Per channel differences for R / G / B channel against the average of these 3
22 int average = Color.red(color) + Color.green(color) + Color.blue(color); local
23 average /= 3;
24 return Math.abs(Color.red(color) - average) <= threshold
25 && Math.abs(Color.green(color) - average) <= threshold
26 && Math.abs(Color.blue(color) - average) <= threshold;
  /external/webrtc/webrtc/modules/video_coding/
content_metrics_processing.h 46 // Returns the long-term averaged content data: recursive average over longer
50 // Returns the short-term averaged content data: uniform average over
55 // Compute working average.
58 // Update the recursive averaged metrics: longer time average (~5/10 secs).
61 // Update the uniform averaged metrics: shorter time average (~RTCP report).
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
IResultLogger.java 20 * Get the current average speed of the transfer.
22 * @return the average speed in bytes/sec
27 * Get the current average speed of the last period of the transfer.
29 * @param period the period over which the average is taken.
30 * @return the average speed in bytes/sec
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
v8_execution_unittest.py 82 def AssertResultValues(self, name, value, count, average):
87 average)
92 self.AssertResultValues(name, value=0, count=0, average=0)
100 average=15)
102 average=9)
108 average=10)
110 average=0)
112 average=0)
117 self.AssertResultValues('v8_parse_lazy_total', value=18, count=2, average=9)
119 average=20
    [all...]
  /external/autotest/client/tools/
avgtime 13 average = sum / count
16 sum_sq_dev += (x - average) ** 2
18 return (average, 100 * std_dev / average)
  /external/libvpx/libvpx/vpx_dsp/mips/
intrapred16_dspr2.c 164 int32_t average; local
179 "addu.ph %[average], %[above_r1], %[above_l1] \n\t"
180 "addu.ph %[average], %[average], %[left_l1] \n\t"
181 "addu.ph %[average], %[average], %[left_r1] \n\t"
188 "addu.ph %[average], %[average], %[above_l1] \n\t"
189 "addu.ph %[average], %[average], %[above_r1] \n\t
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
vp9_intrapred16_dspr2.c 167 int32_t average; local
182 "addu.ph %[average], %[above_r1], %[above_l1] \n\t"
183 "addu.ph %[average], %[average], %[left_l1] \n\t"
184 "addu.ph %[average], %[average], %[left_r1] \n\t"
191 "addu.ph %[average], %[average], %[above_l1] \n\t"
192 "addu.ph %[average], %[average], %[above_r1] \n\t
    [all...]
  /external/iproute2/man/man8/
tc-red.8 28 Once the queue hits a certain average length, packets enqueued have a
32 average queue length, although the queue might get bigger.
45 The average queue size is used for determining the marking
47 Average, which can be more or less sensitive to bursts.
49 When the average queue size is below
56 until the average queue size hits
70 Average queue size at which marking becomes a possibility. Defaults to
76 At this average queue size, the marking probability is maximal. Should be at
91 Hard limit on the real (not average) queue size in bytes. Further packets
97 Used for determining how fast the average queue size is influenced by th
    [all...]
  /cts/common/util/tests/src/com/android/compatibility/common/util/
StatTest.java 55 double average = Stat.getAverage(values); local
56 assertEquals(2.0, average, 0.00001);
59 average = Stat.getAverage(values);
60 assertEquals(3.0, average, 0.00001);
63 average = Stat.getAverage(values);
64 assertEquals(6.0, average, 0.00001);
  /external/autotest/client/common_lib/cros/graphite/
statsd_mock.py 21 class Average(stats_es_mock.mock_class_base):
22 """Mock class for statsd.Average."""
  /external/iptables/extensions/
libxt_connbytes.man 3 average bytes per packet.
20 match packets from a connection whose packets/bytes/average packet
30 the average size (in bytes) of all packets received so far. Note that
32 only in one direction (for example HTTP), the average packet size will
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_limit.h 15 __u32 avg; /* Average secs between packets * scale */
  /external/v8/test/mjsunit/regress/
regress-475705.js 51 var average = Math.floor((lower + higher) / 2);
52 if (use_space_then_do_test(average)) {
53 lower = average;
55 higher = average;

Completed in 963 milliseconds

1 2 3 4 5 6 7 8 91011>>