Home
last modified time | relevance | path

Searched full:average (Results 1 – 25 of 2361) sorted by relevance

12345678910>>...95

/external/mesa3d/src/freedreno/perfcntrs/
Dfd2_perfcntr.c38 COUNTABLE(PERF_PAPC_PASX_REQ, UINT64, AVERAGE),
39 COUNTABLE(PERF_PAPC_PASX_FIRST_VECTOR, UINT64, AVERAGE),
40 COUNTABLE(PERF_PAPC_PASX_SECOND_VECTOR, UINT64, AVERAGE),
41 COUNTABLE(PERF_PAPC_PASX_FIRST_DEAD, UINT64, AVERAGE),
42 COUNTABLE(PERF_PAPC_PASX_SECOND_DEAD, UINT64, AVERAGE),
43 COUNTABLE(PERF_PAPC_PASX_VTX_KILL_DISCARD, UINT64, AVERAGE),
44 COUNTABLE(PERF_PAPC_PASX_VTX_NAN_DISCARD, UINT64, AVERAGE),
45 COUNTABLE(PERF_PAPC_PA_INPUT_PRIM, UINT64, AVERAGE),
46 COUNTABLE(PERF_PAPC_PA_INPUT_NULL_PRIM, UINT64, AVERAGE),
47 COUNTABLE(PERF_PAPC_PA_INPUT_EVENT_FLAG, UINT64, AVERAGE),
[all …]
Dfd5_perfcntr.c51 COUNTABLE(PERF_CP_ALWAYS_COUNT, UINT64, AVERAGE),
52 COUNTABLE(PERF_CP_BUSY_GFX_CORE_IDLE, UINT64, AVERAGE),
53 COUNTABLE(PERF_CP_BUSY_CYCLES, UINT64, AVERAGE),
54 COUNTABLE(PERF_CP_PFP_IDLE, UINT64, AVERAGE),
55 COUNTABLE(PERF_CP_PFP_BUSY_WORKING, UINT64, AVERAGE),
56 COUNTABLE(PERF_CP_PFP_STALL_CYCLES_ANY, UINT64, AVERAGE),
57 COUNTABLE(PERF_CP_PFP_STARVE_CYCLES_ANY, UINT64, AVERAGE),
58 COUNTABLE(PERF_CP_PFP_ICACHE_MISS, UINT64, AVERAGE),
59 COUNTABLE(PERF_CP_PFP_ICACHE_HIT, UINT64, AVERAGE),
60 COUNTABLE(PERF_CP_PFP_MATCH_PM4_PKT_PROFILE, UINT64, AVERAGE),
[all …]
Dfd6_perfcntr.c58 COUNTABLE(PERF_CP_ALWAYS_COUNT, UINT64, AVERAGE),
59 COUNTABLE(PERF_CP_BUSY_GFX_CORE_IDLE, UINT64, AVERAGE),
60 COUNTABLE(PERF_CP_BUSY_CYCLES, UINT64, AVERAGE),
61 COUNTABLE(PERF_CP_NUM_PREEMPTIONS, UINT64, AVERAGE),
62 COUNTABLE(PERF_CP_PREEMPTION_REACTION_DELAY, UINT64, AVERAGE),
63 COUNTABLE(PERF_CP_PREEMPTION_SWITCH_OUT_TIME, UINT64, AVERAGE),
64 COUNTABLE(PERF_CP_PREEMPTION_SWITCH_IN_TIME, UINT64, AVERAGE),
65 COUNTABLE(PERF_CP_DEAD_DRAWS_IN_BIN_RENDER, UINT64, AVERAGE),
66 COUNTABLE(PERF_CP_PREDICATED_DRAWS_KILLED, UINT64, AVERAGE),
67 COUNTABLE(PERF_CP_MODE_SWITCH, UINT64, AVERAGE),
[all …]
/external/webrtc/rtc_base/numerics/
Devent_based_exponential_moving_average_unittest.cc27 EventBasedExponentialMovingAverage average(kHalfTime); in TEST() local
29 EXPECT_TRUE(std::isnan(average.GetAverage())); in TEST()
30 EXPECT_EQ(std::numeric_limits<double>::infinity(), average.GetVariance()); in TEST()
32 average.GetConfidenceInterval()); in TEST()
36 EventBasedExponentialMovingAverage average(kHalfTime); in TEST() local
40 average.AddSample(time, value); in TEST()
41 EXPECT_NEAR(value, average.GetAverage(), kError); in TEST()
42 EXPECT_EQ(std::numeric_limits<double>::infinity(), average.GetVariance()); in TEST()
44 average.GetConfidenceInterval()); in TEST()
48 EventBasedExponentialMovingAverage average(kHalfTime); in TEST() local
[all …]
/external/perfetto/protos/perfetto/metrics/android/
Dhwcomposer.proto22 // Counts the number of composition total layers in the trace. (non-weighted average)
25 // Counts the number of composition dpu layers in the trace. (non-weighted average)
28 // Counts the number of composition gpu layers in the trace. (non-weighted average)
31 // Counts the number of composition dpu cached layers in the trace. (non-weighted average)
35 // (non-weighted average)
39 // (non-weighted average)
55 // the average of overall hwcomposer execution time.
58 // the average of hwcomposer execution time for skipped validation cases.
61 // the average of hwcomposer execution time for unskipped validation cases.
64 // the average of hwcomposer execution time for separated validation cases.
[all …]
/external/openthread/src/core/thread/
Dlink_quality.hpp72 * @param[in] aWeight The weight coefficient used for adding the new sample into average.
78 * This method returns the average failure rate.
80 … * @retval the average failure rate `[0-kMaxRateValue]` with `kMaxRateValue` corresponding to 100%.
86 * This method returns the average success rate.
88 …* @retval the average success rate as [0-kMaxRateValue] with `kMaxRateValue` corresponding to 100%.
102 * The average is maintained using an adaptive exponentially weighted moving filter.
108 static constexpr uint16_t kStringSize = 10; ///< Max string size for average (@sa ToString()).
117 …* This method indicates whether the averager contains an average (i.e., at least one RSS value has…
119 * @retval true If the average value is available (at least one RSS value has been added).
126 * This method adds a received signal strength (RSS) value to the average.
[all …]
/external/rust/crates/num-integer/src/
Daverage.rs4 /// Provides methods to compute the average of two integers, without overflows.
5 pub trait Average: Integer { interface
6 /// Returns the ceiling value of the average of `self` and `other`.
12 /// use num_integer::Average;
25 /// Returns the floor value of the average of `self` and `other`.
31 /// use num_integer::Average;
45 impl<I> Average for I
52 // see http://aggregate.org/MAGIC/#Average%20of%20Integers
54 /// Returns the floor value of the average of `self` and `other`.
60 /// Returns the ceil value of the average of `self` and `other`.
[all …]
/external/angle/src/image_util/
Dimageformats.cpp31 void L8::average(L8 *dst, const L8 *src1, const L8 *src2) in average() function in angle::L8
33 dst->L = gl::average(src1->L, src2->L); in average()
62 void R8::average(R8 *dst, const R8 *src1, const R8 *src2) in average() function in angle::R8
64 dst->R = gl::average(src1->R, src2->R); in average()
80 void A8::average(A8 *dst, const A8 *src1, const A8 *src2) in average() function in angle::A8
82 dst->A = gl::average(src1->A, src2->A); in average()
100 void L8A8::average(L8A8 *dst, const L8A8 *src1, const L8A8 *src2) in average() function in angle::L8A8
121 void A8L8::average(A8L8 *dst, const A8L8 *src1, const A8L8 *src2) in average() function in angle::A8L8
155 void R8G8::average(R8G8 *dst, const R8G8 *src1, const R8G8 *src2) in average() function in angle::R8G8
191 void R8G8B8::average(R8G8B8 *dst, const R8G8B8 *src1, const R8G8B8 *src2) in average() function in angle::R8G8B8
[all …]
Dimageformats.h30 static void average(L8 *dst, const L8 *src1, const L8 *src2);
41 static void average(R8 *dst, const R8 *src1, const R8 *src2);
50 static void average(A8 *dst, const A8 *src1, const A8 *src2);
60 static void average(L8A8 *dst, const L8A8 *src1, const L8A8 *src2);
70 static void average(A8L8 *dst, const A8L8 *src1, const A8L8 *src2);
82 static void average(R8G8 *dst, const R8G8 *src1, const R8G8 *src2);
95 static void average(R8G8B8 *dst, const R8G8B8 *src1, const R8G8B8 *src2);
108 static void average(B8G8R8 *dst, const B8G8R8 *src1, const B8G8R8 *src2);
120 static void average(R5G6B5 *dst, const R5G6B5 *src1, const R5G6B5 *src2);
129 static void average(B5G6R5 *dst, const B5G6R5 *src1, const B5G6R5 *src2);
[all …]
Dgeneratemip.inc48 T::average(dst, src0, src1);
68 T::average(dst, src0, src1);
88 T::average(dst, src0, src1);
114 T::average(&tmp0, src0, src1);
115 T::average(&tmp1, src2, src3);
116 T::average(dst, &tmp0, &tmp1);
143 T::average(&tmp0, src0, src1);
144 T::average(&tmp1, src2, src3);
145 T::average(dst, &tmp0, &tmp1);
172 T::average(&tmp0, src0, src1);
[all …]
/external/autotest/client/cros/audio/
Daudio_quality_measurement.py48 # average amplitude of its block. The block size will be 1.5 ms.
49 # Using average amplitude can mitigate the error caused by
55 # If the difference between average frequency of this block and
59 # average frequency will be much greater than 5 times of
67 # average amplitude of its left/right block, it will be considered
71 # If the average amplitude of the block before or after playing
72 # is more than 0.5 times to the average amplitude of the wave,
82 # average amplitude, we ignore it.
86 # amplitude 1 and standard noise with amplitude k, the average teager value is
89 # calculate its average teager value. Then, we can estimate the equivalent
[all …]
/external/libvpx/vpx_dsp/mips/
Dintrapred16_dspr2.c162 int32_t average; in vpx_dc_predictor_16x16_dspr2() local
177 "addu.ph %[average], %[above_r1], %[above_l1] \n\t" in vpx_dc_predictor_16x16_dspr2()
178 "addu.ph %[average], %[average], %[left_l1] \n\t" in vpx_dc_predictor_16x16_dspr2()
179 "addu.ph %[average], %[average], %[left_r1] \n\t" in vpx_dc_predictor_16x16_dspr2()
186 "addu.ph %[average], %[average], %[above_l1] \n\t" in vpx_dc_predictor_16x16_dspr2()
187 "addu.ph %[average], %[average], %[above_r1] \n\t" in vpx_dc_predictor_16x16_dspr2()
188 "addu.ph %[average], %[average], %[left_l1] \n\t" in vpx_dc_predictor_16x16_dspr2()
189 "addu.ph %[average], %[average], %[left_r1] \n\t" in vpx_dc_predictor_16x16_dspr2()
201 "addu.ph %[average], %[average], %[above_l1] \n\t" in vpx_dc_predictor_16x16_dspr2()
202 "addu.ph %[average], %[average], %[above_r1] \n\t" in vpx_dc_predictor_16x16_dspr2()
[all …]
/external/iproute2/man/man8/
Dtc-red.828 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 the
[all …]
/external/webrtc/modules/audio_processing/
Drms_level_unittest.cc76 int avg_i = level_i->Average(); in TEST()
77 int avg_f = level_f->Average(); in TEST()
85 EXPECT_EQ(3, level->Average()); // -3 dBFS in TEST()
92 EXPECT_EQ(3, stats.average); // -3 dBFS in TEST()
99 EXPECT_EQ(9, level->Average()); // -9 dBFS in TEST()
105 EXPECT_EQ(127, level->Average()); in TEST()
112 EXPECT_EQ(127, stats.average); in TEST()
118 EXPECT_EQ(127, level.Average()); // Return minimum if no samples are given. in TEST()
124 EXPECT_EQ(127, stats.average); in TEST()
131 level->Average(); in TEST()
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Dtime_averaged_stats.h22 /* This tracks a time-decaying weighted average. It works by collecting
23 batches of samples and then mixing their average into a time-decaying
25 before updating the average. */
28 /* The initial average value. This is the reported average until the first
34 grpc_time_averaged_stats_add_sample stop, this will cause the average to
44 weighting of the time average will eventually be 1/3 new batch and 2/3
45 old average. */
54 average. */
56 /* A time-decayed average of the (batch_total_value_ / batch_num_samples_),
57 computed by decaying the samples_in_avg_ weight in the weighted average. */
[all …]
/external/grpc-grpc/src/core/lib/iomgr/
Dtime_averaged_stats.h22 /* This tracks a time-decaying weighted average. It works by collecting
23 batches of samples and then mixing their average into a time-decaying
25 before updating the average. */
28 /* The initial average value. This is the reported average until the first
34 grpc_time_averaged_stats_add_sample stop, this will cause the average to
44 weighting of the time average will eventually be 1/3 new batch and 2/3
45 old average. */
54 average. */
56 /* A time-decayed average of the (batch_total_value_ / batch_num_samples_),
57 computed by decaying the samples_in_avg_ weight in the weighted average. */
[all …]
/external/tensorflow/tensorflow/python/training/
Dmoving_averages.py34 """Compute the moving average of a variable.
36 The moving average of 'variable' updated with 'value' is:
39 The returned Operation sets 'variable' to the newly computed moving average,
70 decay: A float `Tensor` or float value. The moving average decay.
77 A tensor which if evaluated will compute and return the new moving average.
120 """Compute the weighted moving average of `value`.
122 Conceptually, the weighted moving average is:
124 where a moving average updates by the rule
126 Internally, this Op keeps moving average variables of both `value * weight`
131 decay: A float `Tensor` or float value. The moving average decay.
[all …]
Dmoving_averages_test.py114 # Get the first weighted moving average.
122 # Get the second weighted moving average.
140 # Get the first weighted moving average.
148 # Get the second weighted moving average.
185 avg0 = ema.average(var0)
186 avg1 = ema.average(var1)
187 avg2 = ema.average(tensor2)
350 # the moving average of v1 should not have any control inputs
351 v1_avg = ema.average(v1)
384 self.assertAllEqual(self.evaluate(ema.average(v0)), 1.75)
[all …]
/external/dokka/core/testdata/format/
DarrayAverage.md13average](../average.md) | `fun `[`XArray`](./index.md)`<out Byte>.average(): Double`<br>`fun `[`XA…
DarrayAverage.kt3 fun XArray<out Byte>.average(): Double = 0.0 method
4 fun XArray<out Double>.average(): Double = 0.0 method
5 fun XArray<out Float>.average(): Double = 0.0 method
6 fun XArray<out Int>.average(): Double = 0.0 method
7 fun XArray<out Long>.average(): Double = 0.0 method
8 fun XArray<out Short>.average(): Double = 0.0 method
/external/openthread/src/core/config/
Dlink_quality.h41 …* OpenThread's MAC implementation maintains the average failure rate of CCA (Clear Channel Assessm…
43 …* average rate is maintained. Practically, the average value can be considered as the percentage o…
54 …* OpenThread's MAC implementation maintains the average error rate of MAC frame transmissions per …
55 …* parameter specifies the window (in terms of number of frames/sample) over which the average erro…
56 …* Practically, the average value can be considered as the percentage of failed (no ack) MAC frame …
67 …* OpenThread maintains the average error rate of IPv6 messages per neighbor. This parameter specif…
68 …in terms of number of messages) over which the average error rate is maintained. Practically, the
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_query.c1668 X("draw-calls", DRAW_CALLS, UINT64, AVERAGE),
1669 X("decompress-calls", DECOMPRESS_CALLS, UINT64, AVERAGE),
1670 X("MRT-draw-calls", MRT_DRAW_CALLS, UINT64, AVERAGE),
1671 X("prim-restart-calls", PRIM_RESTART_CALLS, UINT64, AVERAGE),
1672 X("spill-draw-calls", SPILL_DRAW_CALLS, UINT64, AVERAGE),
1673 X("compute-calls", COMPUTE_CALLS, UINT64, AVERAGE),
1674 X("spill-compute-calls", SPILL_COMPUTE_CALLS, UINT64, AVERAGE),
1675 X("dma-calls", DMA_CALLS, UINT64, AVERAGE),
1676 X("cp-dma-calls", CP_DMA_CALLS, UINT64, AVERAGE),
1677 X("num-vs-flushes", NUM_VS_FLUSHES, UINT64, AVERAGE),
[all …]
/external/toolchain-utils/crosperf/
Dresults_organizer_unittest.py128 "b1", benchmarks[0], labels[0], 1, "", "", "", "average", "", {}
131 "b2", benchmarks[0], labels[0], 2, "", "", "", "average", "", {}
134 "b3", benchmarks[0], labels[1], 1, "", "", "", "average", "", {}
137 "b4", benchmarks[0], labels[1], 2, "", "", "", "average", "", {}
140 "b5", benchmarks[1], labels[0], 1, "", "", "", "average", "", {}
143 "b6", benchmarks[1], labels[0], 2, "", "", "", "average", "", {}
146 "b7", benchmarks[1], labels[1], 1, "", "", "", "average", "", {}
149 "b8", benchmarks[1], labels[1], 2, "", "", "", "average", "", {}
154 b.result = Result("", b.label, "average", "machine")
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/integrationtests/nativegraphics/testing/util/
DCompareUtils.java18 * @param threshold Per channel differences for R / G / B channel against the average of these 3
23 int average = Color.red(color) + Color.green(color) + Color.blue(color); in verifyPixelGrayScale() local
24 average /= 3; in verifyPixelGrayScale()
25 return Math.abs(Color.red(color) - average) <= threshold in verifyPixelGrayScale()
26 && Math.abs(Color.green(color) - average) <= threshold in verifyPixelGrayScale()
27 && Math.abs(Color.blue(color) - average) <= threshold; in verifyPixelGrayScale()
/external/webrtc/modules/audio_processing/aec3/
Dmoving_average_unittest.cc17 TEST(MovingAverage, Average) { in TEST() argument
28 ma.Average(data1, output); in TEST()
34 ma.Average(data2, output); in TEST()
40 ma.Average(data3, output); in TEST()
46 ma.Average(data4, output); in TEST()
64 ma.Average(data1, output); in TEST()
70 ma.Average(data2, output); in TEST()
76 ma.Average(data3, output); in TEST()
82 ma.Average(data4, output); in TEST()

12345678910>>...95