Home
last modified time | relevance | path

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

12345678910>>...243

/aosp_15_r20/external/mesa3d/src/freedreno/perfcntrs/
H A Dfd2_perfcntr.c20 COUNTABLE(PERF_PAPC_PASX_REQ, UINT64, AVERAGE),
21 COUNTABLE(PERF_PAPC_PASX_FIRST_VECTOR, UINT64, AVERAGE),
22 COUNTABLE(PERF_PAPC_PASX_SECOND_VECTOR, UINT64, AVERAGE),
23 COUNTABLE(PERF_PAPC_PASX_FIRST_DEAD, UINT64, AVERAGE),
24 COUNTABLE(PERF_PAPC_PASX_SECOND_DEAD, UINT64, AVERAGE),
25 COUNTABLE(PERF_PAPC_PASX_VTX_KILL_DISCARD, UINT64, AVERAGE),
26 COUNTABLE(PERF_PAPC_PASX_VTX_NAN_DISCARD, UINT64, AVERAGE),
27 COUNTABLE(PERF_PAPC_PA_INPUT_PRIM, UINT64, AVERAGE),
28 COUNTABLE(PERF_PAPC_PA_INPUT_NULL_PRIM, UINT64, AVERAGE),
29 COUNTABLE(PERF_PAPC_PA_INPUT_EVENT_FLAG, UINT64, AVERAGE),
[all …]
H A Dfd5_perfcntr.c33 COUNTABLE(PERF_CP_ALWAYS_COUNT, UINT64, AVERAGE),
34 COUNTABLE(PERF_CP_BUSY_GFX_CORE_IDLE, UINT64, AVERAGE),
35 COUNTABLE(PERF_CP_BUSY_CYCLES, UINT64, AVERAGE),
36 COUNTABLE(PERF_CP_PFP_IDLE, UINT64, AVERAGE),
37 COUNTABLE(PERF_CP_PFP_BUSY_WORKING, UINT64, AVERAGE),
38 COUNTABLE(PERF_CP_PFP_STALL_CYCLES_ANY, UINT64, AVERAGE),
39 COUNTABLE(PERF_CP_PFP_STARVE_CYCLES_ANY, UINT64, AVERAGE),
40 COUNTABLE(PERF_CP_PFP_ICACHE_MISS, UINT64, AVERAGE),
41 COUNTABLE(PERF_CP_PFP_ICACHE_HIT, UINT64, AVERAGE),
42 COUNTABLE(PERF_CP_PFP_MATCH_PM4_PKT_PROFILE, UINT64, AVERAGE),
[all …]
H A Dfd6_perfcntr.c40 COUNTABLE(PERF_CP_ALWAYS_COUNT, UINT64, AVERAGE),
41 COUNTABLE(PERF_CP_BUSY_GFX_CORE_IDLE, UINT64, AVERAGE),
42 COUNTABLE(PERF_CP_BUSY_CYCLES, UINT64, AVERAGE),
43 COUNTABLE(PERF_CP_NUM_PREEMPTIONS, UINT64, AVERAGE),
44 COUNTABLE(PERF_CP_PREEMPTION_REACTION_DELAY, UINT64, AVERAGE),
45 COUNTABLE(PERF_CP_PREEMPTION_SWITCH_OUT_TIME, UINT64, AVERAGE),
46 COUNTABLE(PERF_CP_PREEMPTION_SWITCH_IN_TIME, UINT64, AVERAGE),
47 COUNTABLE(PERF_CP_DEAD_DRAWS_IN_BIN_RENDER, UINT64, AVERAGE),
48 COUNTABLE(PERF_CP_PREDICATED_DRAWS_KILLED, UINT64, AVERAGE),
49 COUNTABLE(PERF_CP_MODE_SWITCH, UINT64, AVERAGE),
[all …]
/aosp_15_r20/external/webrtc/rtc_base/numerics/
H A 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 …]
/aosp_15_r20/tools/loganalysis/javatests/com/android/loganalysis/parser/
H A DMemHealthParserTest.java33 "Average Native Heap: 10910", in testOneForegroundProc()
34 "Average Dalvik Heap: 8011", in testOneForegroundProc()
35 "Average PSS: 90454", in testOneForegroundProc()
39 "Average Summary Java Heap: 8223", in testOneForegroundProc()
40 "Average Summary Native Heap: 3852", in testOneForegroundProc()
41 "Average Summary Code: 1804", in testOneForegroundProc()
42 "Average Summary Stack: 246", in testOneForegroundProc()
43 "Average Summary Graphics: 0", in testOneForegroundProc()
44 "Average Summary Other: 855", in testOneForegroundProc()
45 "Average Summary System: 9151", in testOneForegroundProc()
[all …]
/aosp_15_r20/external/angle/src/image_util/
H A 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
142 void L4A4::average(L4A4 *dst, const L4A4 *src1, const L4A4 *src2) in average() function in angle::L4A4
144 dst->L = gl::average(src1->L, src2->L); in average()
[all …]
H A 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);
80 static void average(L4A4 *dst, const L4A4 *src1, const L4A4 *src2);
92 static void average(R8G8 *dst, const R8G8 *src1, const R8G8 *src2);
105 static void average(R8G8B8 *dst, const R8G8B8 *src1, const R8G8B8 *src2);
118 static void average(B8G8R8 *dst, const B8G8R8 *src1, const B8G8R8 *src2);
130 static void average(R5G6B5 *dst, const R5G6B5 *src1, const R5G6B5 *src2);
[all …]
H A 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 …]
/aosp_15_r20/external/openthread/src/core/thread/
H A Dlink_quality.hpp73 * @param[in] aWeight The weight coefficient used for adding the new sample into average.
79 * Returns the average failure rate.
81 … * @retval the average failure rate `[0-kMaxRateValue]` with `kMaxRateValue` corresponding to 100%.
87 * Returns the average success rate.
89 …* @retval the average success rate as [0-kMaxRateValue] with `kMaxRateValue` corresponding to 100%.
103 * The average is maintained using an adaptive exponentially weighted moving filter.
109 static constexpr uint16_t kStringSize = 10; ///< Max string size for average (@sa ToString()).
118 …* Indicates whether the averager contains an average (i.e., at least one RSS value has been added).
120 * @retval true If the average value is available (at least one RSS value has been added).
127 * Adds a received signal strength (RSS) value to the average.
[all …]
/aosp_15_r20/external/autotest/client/cros/audio/
H A 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 …]
/aosp_15_r20/tools/test/connectivity/acts_tests/acts_contrib/test_utils/audio_analysis_lib/
Daudio_quality_measurement.py47 # average amplitude of its block. The block size will be 1.5 ms.
48 # Using average amplitude can mitigate the error caused by
54 # If the difference between average frequency of this block and
58 # average frequency will be much greater than 5 times of
66 # average amplitude of its left/right block, it will be considered
70 # If the average amplitude of the block before or after playing
71 # is more than 0.5 times to the average amplitude of the wave,
81 # average amplitude, we ignore it.
85 # amplitude 1 and standard noise with amplitude k, the average teager value is
88 # calculate its average teager value. Then, we can estimate the equivalent
[all …]
/aosp_15_r20/external/perfetto/protos/perfetto/metrics/android/
H A 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 …]
/aosp_15_r20/external/libvpx/vpx_dsp/mips/
H A 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 …]
H A Dconvolve2_avg_horiz_dspr2.c81 "addqh_r.w %[tn2], %[tn2], %[tp1] \n\t" /* average even 1 */ in convolve_bi_avg_horiz_4_dspr2()
89 "addqh_r.w %[Temp1], %[Temp1], %[tn1] \n\t" /* average odd 1 */ in convolve_bi_avg_horiz_4_dspr2()
93 "addqh_r.w %[tp1], %[tp1], %[tp2] \n\t" /* average even 2 */ in convolve_bi_avg_horiz_4_dspr2()
96 "addqh_r.w %[p2], %[p2], %[p3] \n\t" /* average odd 2 */ in convolve_bi_avg_horiz_4_dspr2()
318 "addqh_r.w %[st2], %[st2], %[st1] \n\t" /* average even 1 */ in convolve_bi_avg_horiz_16_dspr2()
328 "addqh_r.w %[qload3], %[qload3], %[st2] \n\t" /* average even 2 */ in convolve_bi_avg_horiz_16_dspr2()
340 "addqh_r.w %[qload3], %[qload3], %[st3] \n\t" /* average even 3 */ in convolve_bi_avg_horiz_16_dspr2()
349 "addqh_r.w %[qload1], %[qload1], %[st1] \n\t" /* average even 4 */ in convolve_bi_avg_horiz_16_dspr2()
359 "addqh_r.w %[qload2], %[qload2], %[st2] \n\t" /* average even 5 */ in convolve_bi_avg_horiz_16_dspr2()
371 "addqh_r.w %[qload3], %[qload3], %[st3] \n\t" /* average even 6 */ in convolve_bi_avg_horiz_16_dspr2()
[all …]
H A Dconvolve8_avg_dspr2.c432 "adduh_r.qb %[tn1], %[tp2], %[tp1] \n\t" /* average */ in vpx_convolve_avg_dspr2()
454 "adduh_r.qb %[tn1], %[tp2], %[tp1] \n\t" /* average */ in vpx_convolve_avg_dspr2()
456 "adduh_r.qb %[tn2], %[tp3], %[tp4] \n\t" /* average */ in vpx_convolve_avg_dspr2()
479 "adduh_r.qb %[tn1], %[tp2], %[tp1] \n\t" /* average */ in vpx_convolve_avg_dspr2()
483 "adduh_r.qb %[tn2], %[tp3], %[tp4] \n\t" /* average */ in vpx_convolve_avg_dspr2()
487 "adduh_r.qb %[tn1], %[tp2], %[tp1] \n\t" /* average */ in vpx_convolve_avg_dspr2()
489 "adduh_r.qb %[tn2], %[tp3], %[tp4] \n\t" /* average */ in vpx_convolve_avg_dspr2()
512 "adduh_r.qb %[tn1], %[tp2], %[tp1] \n\t" /* average */ in vpx_convolve_avg_dspr2()
516 "adduh_r.qb %[tn2], %[tp3], %[tp4] \n\t" /* average */ in vpx_convolve_avg_dspr2()
520 "adduh_r.qb %[tn1], %[tp2], %[tp1] \n\t" /* average */ in vpx_convolve_avg_dspr2()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/training/
H A 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 …]
H A 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 …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_query.c1751 X("draw-calls", DRAW_CALLS, UINT64, AVERAGE),
1752 X("decompress-calls", DECOMPRESS_CALLS, UINT64, AVERAGE),
1753 X("compute-calls", COMPUTE_CALLS, UINT64, AVERAGE),
1754 X("cp-dma-calls", CP_DMA_CALLS, UINT64, AVERAGE),
1755 X("num-vs-flushes", NUM_VS_FLUSHES, UINT64, AVERAGE),
1756 X("num-ps-flushes", NUM_PS_FLUSHES, UINT64, AVERAGE),
1757 X("num-cs-flushes", NUM_CS_FLUSHES, UINT64, AVERAGE),
1758 X("num-CB-cache-flushes", NUM_CB_CACHE_FLUSHES, UINT64, AVERAGE),
1759 X("num-DB-cache-flushes", NUM_DB_CACHE_FLUSHES, UINT64, AVERAGE),
1760 X("num-L2-invalidates", NUM_L2_INVALIDATES, UINT64, AVERAGE),
[all …]
/aosp_15_r20/external/rust/android-crates-io/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 …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_query.c1932 X("draw-calls", DRAW_CALLS, UINT64, AVERAGE),
1933 X("decompress-calls", DECOMPRESS_CALLS, UINT64, AVERAGE),
1934 X("MRT-draw-calls", MRT_DRAW_CALLS, UINT64, AVERAGE),
1935 X("prim-restart-calls", PRIM_RESTART_CALLS, UINT64, AVERAGE),
1936 X("spill-draw-calls", SPILL_DRAW_CALLS, UINT64, AVERAGE),
1937 X("compute-calls", COMPUTE_CALLS, UINT64, AVERAGE),
1938 X("spill-compute-calls", SPILL_COMPUTE_CALLS, UINT64, AVERAGE),
1939 X("dma-calls", DMA_CALLS, UINT64, AVERAGE),
1940 X("cp-dma-calls", CP_DMA_CALLS, UINT64, AVERAGE),
1941 X("num-vs-flushes", NUM_VS_FLUSHES, UINT64, AVERAGE),
[all …]
/aosp_15_r20/external/webrtc/modules/audio_processing/
H A 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 …]
/aosp_15_r20/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/dataentries/formatters/
DTemperatureDeltaFormatterTest.kt213 "-2.5 degrees Celsius (average variation)", in <lambda>()
214 "-1 degree Celsius (average variation)", in <lambda>()
215 "0 degrees Celsius (average variation)", in <lambda>()
216 "+1 degree Celsius (average variation)", in <lambda>()
217 "+1.3 degrees Celsius (average variation)", in <lambda>()
218 "+2.5 degrees Celsius (average variation)") in <lambda>()
231 "-4.5 degrees Fahrenheit (average variation)", in <lambda>()
232 "-1.8 degrees Fahrenheit (average variation)", in <lambda>()
233 "0 degrees Fahrenheit (average variation)", in <lambda>()
234 "+1.8 degrees Fahrenheit (average variation)", in <lambda>()
[all …]
/aosp_15_r20/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
H A DMemHealthRecord.java149 out.printf("Average Native Heap: %d\n", getAverage(nativeHeap)); in saveVerbose()
150 out.printf("Average Dalvik Heap: %d\n", getAverage(dalvikHeap)); in saveVerbose()
151 out.printf("Average PSS: %d\n", getAverage(pss)); in saveVerbose()
157 out.printf("Average Summary Java Heap: %d\n", getAverage(asJavaHeap)); in saveVerbose()
158 out.printf("Average Summary Native Heap: %d\n", getAverage(asNativeHeap)); in saveVerbose()
159 out.printf("Average Summary Code: %d\n", getAverage(asCode)); in saveVerbose()
160 out.printf("Average Summary Stack: %d\n", getAverage(asStack)); in saveVerbose()
161 out.printf("Average Summary Graphics: %d\n", getAverage(asGraphics)); in saveVerbose()
162 out.printf("Average Summary Other: %d\n", getAverage(asOther)); in saveVerbose()
163 out.printf("Average Summary System: %d\n", getAverage(asSystem)); in saveVerbose()
[all …]
/aosp_15_r20/external/iproute2/man/man8/
H A 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 …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/gprpp/
Dtime_averaged_stats.h24 // This tracks a time-decaying weighted average. It works by collecting
25 // batches of samples and then mixing their average into a time-decaying
27 // before updating the average.
36 // Complete a batch and compute the new estimate of the average sample
44 // The initial average value. This is the reported average until the first
50 // grpc_time_averaged_stats_add_sample stop, this will cause the average to
60 // weighting of the time average will eventually be 1/3 new batch and 2/3
61 // old average.
70 // average.
72 // A time-decayed average of the (batch_total_value_ / batch_num_samples_),
[all …]

12345678910>>...243