Home
last modified time | relevance | path

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

12345678910>>...92

/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/rust/crates/num-integer/src/
Daverage.rs4 /// Provides methods to compute the average of two integers, without overflows.
5 pub trait Average: Integer { trait
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/libaom/libaom/aom_dsp/mips/
Dintrapred8_dspr2.c72 int32_t average; in aom_dc_predictor_8x8_dspr2() local
92 "addu.ph %[average], %[above_r1], %[above_l1] \n\t" in aom_dc_predictor_8x8_dspr2()
93 "addu.ph %[average], %[average], %[left_l1] \n\t" in aom_dc_predictor_8x8_dspr2()
94 "addu.ph %[average], %[average], %[left_r1] \n\t" in aom_dc_predictor_8x8_dspr2()
96 "addu.ph %[average], %[average], %[above_l2] \n\t" in aom_dc_predictor_8x8_dspr2()
97 "addu.ph %[average], %[average], %[above_r2] \n\t" in aom_dc_predictor_8x8_dspr2()
98 "addu.ph %[average], %[average], %[left_l2] \n\t" in aom_dc_predictor_8x8_dspr2()
99 "addu.ph %[average], %[average], %[left_r2] \n\t" in aom_dc_predictor_8x8_dspr2()
101 "addiu %[average], %[average], 8 \n\t" in aom_dc_predictor_8x8_dspr2()
103 "srl %[tmp], %[average], 16 \n\t" in aom_dc_predictor_8x8_dspr2()
[all …]
Dintrapred16_dspr2.c164 int32_t average; in aom_dc_predictor_16x16_dspr2() local
179 "addu.ph %[average], %[above_r1], %[above_l1] \n\t" in aom_dc_predictor_16x16_dspr2()
180 "addu.ph %[average], %[average], %[left_l1] \n\t" in aom_dc_predictor_16x16_dspr2()
181 "addu.ph %[average], %[average], %[left_r1] \n\t" in aom_dc_predictor_16x16_dspr2()
188 "addu.ph %[average], %[average], %[above_l1] \n\t" in aom_dc_predictor_16x16_dspr2()
189 "addu.ph %[average], %[average], %[above_r1] \n\t" in aom_dc_predictor_16x16_dspr2()
190 "addu.ph %[average], %[average], %[left_l1] \n\t" in aom_dc_predictor_16x16_dspr2()
191 "addu.ph %[average], %[average], %[left_r1] \n\t" in aom_dc_predictor_16x16_dspr2()
203 "addu.ph %[average], %[average], %[above_l1] \n\t" in aom_dc_predictor_16x16_dspr2()
204 "addu.ph %[average], %[average], %[above_r1] \n\t" in aom_dc_predictor_16x16_dspr2()
[all …]
Dintrapred4_dspr2.c45 int32_t average; in aom_dc_predictor_4x4_dspr2() local
57 "addu.ph %[average], %[above_r], %[above_l] \n\t" in aom_dc_predictor_4x4_dspr2()
58 "addu.ph %[average], %[average], %[left_l] \n\t" in aom_dc_predictor_4x4_dspr2()
59 "addu.ph %[average], %[average], %[left_r] \n\t" in aom_dc_predictor_4x4_dspr2()
60 "addiu %[average], %[average], 4 \n\t" in aom_dc_predictor_4x4_dspr2()
61 "srl %[tmp], %[average], 16 \n\t" in aom_dc_predictor_4x4_dspr2()
62 "addu.ph %[average], %[tmp], %[average] \n\t" in aom_dc_predictor_4x4_dspr2()
63 "srl %[expected_dc], %[average], 3 \n\t" in aom_dc_predictor_4x4_dspr2()
77 [average] "=&r"(average), [tmp] "=&r"(tmp), in aom_dc_predictor_4x4_dspr2()
/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/libvpx/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/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/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/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/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
Dblocking_observable.cpp129 SCENARIO("blocking average sample"){
130 printf("//! [blocking average sample]\n");
132 auto average = values.average(); variable
133 printf("average = %lf\n", average);
134 printf("//! [blocking average sample]\n");
137 SCENARIO("blocking average empty sample"){
138 printf("//! [blocking average empty sample]\n");
141 auto average = values.average(); variable
142 printf("average = %lf\n", average);
146 printf("//! [blocking average empty sample]\n");
[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/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)
51 // the average of overall hwcomposer execution time.
54 // the average of hwcomposer execution time for skipped validation cases.
57 // the average of hwcomposer execution time for unskipped validation cases.
60 // the average of hwcomposer execution time for separated validation cases.
/external/tensorflow/tensorflow/python/training/
Dmoving_averages.py37 """Compute the moving average of a variable.
39 The moving average of 'variable' updated with 'value' is:
42 The returned Operation sets 'variable' to the newly computed moving average,
73 decay: A float Tensor or float value. The moving average decay.
80 A tensor which if evaluated will compute and return the new moving average.
123 """Compute the weighted moving average of `value`.
125 Conceptually, the weighted moving average is:
127 where a moving average updates by the rule
129 Internally, this Op keeps moving average variables of both `value * weight`
134 decay: A float `Tensor` or float value. The moving average decay.
[all …]
Dmoving_averages_test.py118 # Get the first weighted moving average.
126 # Get the second weighted moving average.
144 # Get the first weighted moving average.
152 # Get the second weighted moving average.
187 avg0 = ema.average(var0)
188 avg1 = ema.average(var1)
189 avg2 = ema.average(tensor2)
292 # the moving average of v1 should not have any control inputs
293 v1_avg = ema.average(v1)
322 self.assertAllEqual(self.evaluate(ema.average(v0)), 1.75)
[all …]
/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.py143 '', 'average', '', {})
145 '', 'average', '', {})
147 '', 'average', '', {})
149 '', 'average', '', {})
151 '', 'average', '', {})
153 '', 'average', '', {})
155 '', 'average', '', {})
157 '', 'average', '', {})
161 b.result = Result('', b.label, 'average', 'machine')

12345678910>>...92