| /third_party/mesa3d/src/freedreno/perfcntrs/ |
| D | fd2_perfcntr.c | 38 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 …]
|
| D | fd5_perfcntr.c | 51 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 …]
|
| D | fd6_perfcntr.c | 58 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 …]
|
| /third_party/flutter/skia/third_party/externals/angle2/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); 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 …]
|
| 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 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 …]
|
| 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 …]
|
| /third_party/skia/third_party/externals/angle2/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); 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 …]
|
| 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 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 …]
|
| 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 …]
|
| /third_party/grpc/src/core/lib/iomgr/ |
| D | time_averaged_stats.h | 22 /* 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 …]
|
| /third_party/boost/libs/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 …]
|
| /third_party/mesa3d/src/gallium/drivers/radeonsi/ |
| D | si_query.c | 1653 X("draw-calls", DRAW_CALLS, UINT64, AVERAGE), 1654 X("decompress-calls", DECOMPRESS_CALLS, UINT64, AVERAGE), 1655 X("prim-restart-calls", PRIM_RESTART_CALLS, UINT64, AVERAGE), 1656 X("compute-calls", COMPUTE_CALLS, UINT64, AVERAGE), 1657 X("cp-dma-calls", CP_DMA_CALLS, UINT64, AVERAGE), 1658 X("num-vs-flushes", NUM_VS_FLUSHES, UINT64, AVERAGE), 1659 X("num-ps-flushes", NUM_PS_FLUSHES, UINT64, AVERAGE), 1660 X("num-cs-flushes", NUM_CS_FLUSHES, UINT64, AVERAGE), 1661 X("num-CB-cache-flushes", NUM_CB_CACHE_FLUSHES, UINT64, AVERAGE), 1662 X("num-DB-cache-flushes", NUM_DB_CACHE_FLUSHES, UINT64, AVERAGE), [all …]
|
| /third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/ |
| D | greedyh.c | 108 /* Average of L1 and L3 */ in greedyh_scanline_C_ayuv() 115 /* Average of next L1 and next L3 */ in greedyh_scanline_C_ayuv() 118 /* Calculate average of one pixel forward and previous */ in greedyh_scanline_C_ayuv() 121 /* Calculate average of center and surrounding pixels */ in greedyh_scanline_C_ayuv() 127 /* Get best L2/L2P, i.e. least diff from above average */ in greedyh_scanline_C_ayuv() 169 /* Weighted sum on clipped weave pixel and average */ in greedyh_scanline_C_ayuv() 225 /* Average of L1 and L3 */ in greedyh_scanline_C_yuy2() 234 /* Average of next L1 and next L3 */ in greedyh_scanline_C_yuy2() 238 /* Calculate average of one pixel forward and previous */ in greedyh_scanline_C_yuy2() 242 /* Calculate average of center and surrounding pixels */ in greedyh_scanline_C_yuy2() [all …]
|
| /third_party/mesa3d/src/gallium/drivers/freedreno/ |
| D | freedreno_query.c | 122 FQ("draw-calls", DRAW_CALLS, UINT64, AVERAGE), 123 FQ("batches", BATCH_TOTAL, UINT64, AVERAGE), 124 FQ("batches-sysmem", BATCH_SYSMEM, UINT64, AVERAGE), 125 FQ("batches-gmem", BATCH_GMEM, UINT64, AVERAGE), 126 FQ("batches-nondraw", BATCH_NONDRAW, UINT64, AVERAGE), 127 FQ("restores", BATCH_RESTORE, UINT64, AVERAGE), 128 PQ("prims-emitted", PRIMITIVES_EMITTED, UINT64, AVERAGE), 129 FQ("staging", STAGING_UPLOADS, UINT64, AVERAGE), 130 FQ("shadow", SHADOW_UPLOADS, UINT64, AVERAGE), 131 FQ("vsregs", VS_REGS, FLOAT, AVERAGE), [all …]
|
| /third_party/ffmpeg/libavfilter/opencl/ |
| D | tonemap.cl | 32 float average; 79 // detect peak/average signal of a frame, the algorithm was ported from: 87 // average buffer : detection_frames + 1 91 // total of average : 1 121 // update frame peak/avg using work-group-average. 132 r.average = max(0.25f, avg); 168 float3 map_one_pixel_rgb(float3 rgb, float peak, float average) { 181 // Scale the signal to compensate for differences in the average brightness 182 float slope = min(1.0f, sdr_avg / average); 247 c0 = map_one_pixel_rgb(c0, r.peak, r.average); [all …]
|
| /third_party/gstreamer/gstplugins_bad/gst/audiolatency/ |
| D | gstaudiolatency.c | 47 * 'last-latency' and 'average-latency' properties at most once a second, or 49 * "average-latency" fields in the GstStructure. 51 * The average latency is a running average of the last 5 measurements. 175 g_param_spec_int64 ("average-latency", "Running average latency", in gst_audiolatency_class_init() 176 "The running average latency, in microseconds", 0, in gst_audiolatency_class_init() 263 gint64 average = 0; in gst_audiolatency_get_average_latency_unlocked() local 268 average += self->latencies[ii]; in gst_audiolatency_get_average_latency_unlocked() 271 return average / MAX (n, 1); in gst_audiolatency_get_average_latency_unlocked() 277 gint64 average; in gst_audiolatency_get_average_latency() local 280 average = gst_audiolatency_get_average_latency_unlocked (self); in gst_audiolatency_get_average_latency() [all …]
|
| /third_party/mesa3d/src/gallium/drivers/r600/ |
| D | r600_query.c | 1950 X("draw-calls", DRAW_CALLS, UINT64, AVERAGE), 1951 X("decompress-calls", DECOMPRESS_CALLS, UINT64, AVERAGE), 1952 X("MRT-draw-calls", MRT_DRAW_CALLS, UINT64, AVERAGE), 1953 X("prim-restart-calls", PRIM_RESTART_CALLS, UINT64, AVERAGE), 1954 X("spill-draw-calls", SPILL_DRAW_CALLS, UINT64, AVERAGE), 1955 X("compute-calls", COMPUTE_CALLS, UINT64, AVERAGE), 1956 X("spill-compute-calls", SPILL_COMPUTE_CALLS, UINT64, AVERAGE), 1957 X("dma-calls", DMA_CALLS, UINT64, AVERAGE), 1958 X("cp-dma-calls", CP_DMA_CALLS, UINT64, AVERAGE), 1959 X("num-vs-flushes", NUM_VS_FLUSHES, UINT64, AVERAGE), [all …]
|
| /third_party/openGLES/extensions/INTEL/ |
| D | INTEL_shader_integer_functions2.txt | 132 genUType average(genUType x, genUType y) 133 genIType average(genIType x, genIType y) 134 genU64Type average(genU64Type x, genU64Type y) 135 genI64Type average(genI64Type x, genI64Type y) 136 genU16Type average(genU16Type x, genU16Type y) 137 genI16Type average(genI16Type x, genI16Type y) 249 6) Should this extension include average()? 251 RESOLVED: YES. average() corresponds to hadd() in OpenCL, and 255 average(), on the other hand, does not correspond to a single instruction.
|
| /third_party/ffmpeg/libavfilter/ |
| D | af_extrastereo.c | 84 float average, left, right; in filter_frame() local 88 average = (left + right) / 2.; in filter_frame() 89 left = average + mult * (left - average); in filter_frame() 90 right = average + mult * (right - average); in filter_frame()
|
| /third_party/iptables/extensions/ |
| D | 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
|
| /third_party/alsa-utils/bat/ |
| D | latencytest.c | 27 - Listen and measure the average loudness of the environment for 1 second. 28 - Create a threshold value 16 decibels higher than the average loudness. 158 float average; in calculate_threshold() local 161 /* Calculate the average loudness of the environment and create in calculate_threshold() 162 a threshold value 16 decibels higher than the average loudness */ in calculate_threshold() 163 average = bat->latency.sum / bat->latency.samples / 32767.0f; in calculate_threshold() 164 reference = 20.0f * log10f(average) + 16.0f; in calculate_threshold() 188 /* Measuring average loudness for 1 second */ in handleinput()
|
| /third_party/python/Doc/library/ |
| D | tracemalloc.rst | 18 total size, number and average size of allocated memory blocks 58 <frozen importlib._bootstrap>:716: size=4855 KiB, count=39328, average=126 B 59 <frozen importlib._bootstrap>:284: size=521 KiB, count=3199, average=167 B 60 /usr/lib/python3.4/collections/__init__.py:368: size=244 KiB, count=2315, average=108 B 61 /usr/lib/python3.4/unittest/case.py:381: size=185 KiB, count=779, average=243 B 62 /usr/lib/python3.4/unittest/case.py:402: size=154 KiB, count=378, average=416 B 63 /usr/lib/python3.4/abc.py:133: size=88.7 KiB, count=347, average=262 B 64 <frozen importlib._bootstrap>:1446: size=70.4 KiB, count=911, average=79 B 65 <frozen importlib._bootstrap>:1454: size=52.0 KiB, count=25, average=2131 B 66 <string>:5: size=49.7 KiB, count=148, average=344 B [all …]
|
| /third_party/openssl/doc/man3/ |
| D | OPENSSL_LH_stats.pod | 35 the average number of data items per 'bucket' in the hash table. The 36 'actual load' is the average number of items per 'bucket', but only 38 average number of searches that will need to find an item in the hash 39 table, while the 'load' is the average number that will be done to
|
| /third_party/mindspore/mindspore/nn/metrics/ |
| D | fbeta.py | 104 def eval(self, average=False): argument 109 average (bool): Whether to calculate the average fbeta. Default value is False. 114 validator.check_value_type("average", average, [bool], self.__class__.__name__) 121 if average:
|
| /third_party/boost/boost/geometry/strategies/cartesian/ |
| D | centroid_average.hpp | 42 \brief Centroid calculation taking average of points 50 class average class 57 friend class average; 110 typedef average
|