| /external/mesa3d/src/freedreno/perfcntrs/ |
| D | fd2_perfcntr.c | 20 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 …]
|
| D | fd5_perfcntr.c | 33 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 …]
|
| D | fd6_perfcntr.c | 40 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 …]
|
| /external/webrtc/rtc_base/numerics/ |
| D | event_based_exponential_moving_average_unittest.cc | 27 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/ |
| D | hwcomposer.proto | 22 // 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/ |
| D | link_quality.hpp | 72 * @param[in] aWeight The weight coefficient used for adding the new sample into average. 77 * Returns the average failure rate. 79 … * @retval the average failure rate `[0-kMaxRateValue]` with `kMaxRateValue` corresponding to 100%. 84 * Returns the average success rate. 86 …* @retval the average success rate as [0-kMaxRateValue] with `kMaxRateValue` corresponding to 100%. 99 * The average is maintained using an adaptive exponentially weighted moving filter. 104 static constexpr uint16_t kStringSize = 10; ///< Max string size for average (@sa ToString()). 112 …* Indicates whether the averager contains an average (i.e., at least one RSS value has been added). 114 * @retval true If the average value is available (at least one RSS value has been added). 120 * Adds a received signal strength (RSS) value to the average. [all …]
|
| /external/rust/android-crates-io/crates/num-integer/src/ |
| D | average.rs | 4 /// 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/ |
| D | imageformats.h | 30 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 …]
|
| D | imageformats.cpp | 31 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 …]
|
| D | generatemip.inc | 48 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/ |
| D | audio_quality_measurement.py | 48 # 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/iproute2/man/man8/ |
| D | 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 the [all …]
|
| /external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/gprpp/ |
| D | time_averaged_stats.h | 24 // 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 …]
|
| /external/chromium-crossbench/tests/crossbench/benchmarks/ |
| D | test_jetstream.py | 30 "Total/average": 10, 32 "cdjs/average": 30, 39 ("Total/average", "Total", "average", 10.0), 41 ("cdjs/average", "cdjs", "average", 30.0), 47 "cdjs/average": 30, 49 "Total/average": 10, 57 ("cdjs/average", "cdjs", "average", 30.0), 59 ("Total/average", "Total", "average", 10.0),
|
| /external/grpc-grpc/src/core/lib/gprpp/ |
| D | time_averaged_stats.h | 24 // 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 …]
|
| /external/webrtc/modules/audio_processing/ |
| D | rms_level_unittest.cc | 76 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/libvpx/vpx_dsp/mips/ |
| D | intrapred16_dspr2.c | 162 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/tensorflow/tensorflow/python/training/ |
| D | moving_averages.py | 34 """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 …]
|
| /external/dokka/core/testdata/format/ |
| D | arrayAverage.md | 13 …average](../average.md) | `fun `[`XArray`](./index.md)`<out Byte>.average(): Double`<br>`fun `[`XA…
|
| D | arrayAverage.kt | 3 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/cronet/stable/build/util/lib/proto/ |
| D | average_unittests.py | 6 """File for testing average.py.""" 9 from average import Average 13 """Test average.py.""" 16 ave = Average("a") 21 ave = Average("b") 27 ave = Average("c")
|
| /external/cronet/tot/build/util/lib/proto/ |
| D | average_unittests.py | 6 """File for testing average.py.""" 9 from average import Average 13 """Test average.py.""" 16 ave = Average("a") 21 ave = Average("b") 27 ave = Average("c")
|
| /external/angle/build/util/lib/proto/ |
| D | average_unittests.py | 6 """File for testing average.py.""" 9 from average import Average 13 """Test average.py.""" 16 ave = Average("a") 21 ave = Average("b") 27 ave = Average("c")
|
| /external/openthread/src/core/config/ |
| D | link_quality.h | 49 …* OpenThread's MAC implementation maintains the average failure rate of CCA (Clear Channel Assessm… 51 …* average rate is maintained. Practically, the average value can be considered as the percentage o… 61 …* OpenThread's MAC implementation maintains the average error rate of MAC frame transmissions per … 62 …* parameter specifies the window (in terms of number of frames/sample) over which the average erro… 63 …* Practically, the average value can be considered as the percentage of failed (no ack) MAC frame … 73 …* OpenThread maintains the average error rate of IPv6 messages per neighbor. This parameter specif… 74 …in terms of number of messages) over which the average error rate is maintained. Practically, the …
|
| /external/sdv/vsomeip/third_party/boost/unordered/doc/ |
| D | comparison.qbk | 98 [Average case O(/N/), worst case 104 [Average case constant, worst case linear] 110 [Average case constant, worst case linear (ie. the same as 116 [Average case O(/N/), worst case O(/N/ * `size()`)] 121 [Average case: O(`count(k)`), Worst case: O(`size()`)] 126 [Average case: O(1), Worst case: O(`size()`)] 131 [Average case: O(/N/), Worst case: O(`size()`)] 141 [Average case: O(1), Worst case: O(`size()`)] 143 [/ TODO: Average case is probably wrong. ] 147 [Average case: O(1), Worst case: O(`size()`)] [all …]
|