/external/libvpx/libvpx/third_party/libyuv/source/ |
scale_win.cc | 262 // For rounding, average = (sum + 2) / 4 263 // becomes average((sum >> 1), 0) 360 movdqu xmm0, [eax] // average rows 385 psrlw xmm0, 4 // /16 for average of 4 * 4 451 vmovdqu ymm0, [eax] // average rows 477 vpsrlw ymm0, ymm0, 4 // /32 for average of 4 * 4 775 movdqu xmm0, [eax] // average 2 rows into xmm0 1053 pavgb xmm0, xmm2 // average rows [all...] |
/external/libyuv/files/source/ |
scale_win.cc | 261 // For rounding, average = (sum + 2) / 4 262 // becomes average((sum >> 1), 0) 362 movdqu xmm0, [eax] // average rows 387 psrlw xmm0, 4 // /16 for average of 4 * 4 455 vmovdqu ymm0, [eax] // average rows 481 vpsrlw ymm0, ymm0, 4 // /32 for average of 4 * 4 781 movdqu xmm0, [eax] // average 2 rows into xmm0 [all...] |
/frameworks/native/cmds/dumpstate/tests/ |
dumpstate_test.cpp | 695 EXPECT_EQ(13, progress.GetMax()); // 11 average * 20% growth = 13.2 = 13 714 EXPECT_EQ(18, progress.GetMax()); // 15 average * 20% growth = 18 788 // Tests what happens when the persistent settings contains the average duration of 1 run. 789 // Data on file is 1 run and 109 average. 803 // Average now is 2 runs and (10 + 20)/ 2 = 15 817 // Average now is 3 runs and (15 * 2 + 25)/ 3 = 18.33 = 18 826 // Make sure average decreases as well 832 // Average now is 4 runs and (18 * 3 + 5)/ 4 = 14.75 = 14 837 // Tests what happens when the persistent settings contains the average duration of 2 runs. 838 // Data on file is 2 runs and 15 average [all...] |
/cts/hostsidetests/dumpsys/src/android/dumpsys/cts/ |
BaseDumpsysTest.java | 111 // There was a bug in the average calculation, so we can't check the average
|
/device/linaro/bootloader/edk2/PerformancePkg/Library/TscTimerLib/ |
TscTimerLibShare.c | 205 To determine average processor clock frequency, Intel recommends the use of
207 the average is required.
|
/external/autotest/client/site_tests/kernel_Ktime/ |
kernel_Ktime.py | 38 # Diffs to average for the rolling display 188 # Track rolling average and maximum diff
|
/external/eigen/Eigen/src/SparseCore/ |
SparseSparseProductWithPruning.h | 47 // of the lhs differs in average of one non zeros, thus the number of non zeros for 48 // the product of a rhs column with the lhs is X+Y where X is the average number of non zero
|
/external/fio/tools/hist/ |
fiologparser_hist.py.1 | 11 average, maximum latency, and 50th, 95th, and 99th percentiles. 88 Average statistics use a standard weighted arithmetic mean.
|
/external/iproute2/man/man8/ |
tc-sfb.8 | 102 Hard limit on the real (not average) total queue size in packets. 115 The desired average bin length. If the bin queue length reaches this value,
|
/external/libavc/encoder/ |
irc_rate_control_api.c | 556 /* Restricting the QP swing if the average bit rate has changed */ [all...] |
/external/libcups/filter/ |
rasterbench.c | 88 * Run the tests several times to get a good average... 147 * Return the average of the middle two samples...
|
/external/libvpx/libvpx/examples/ |
vp9_spatial_svc_encoder.c | 395 // Target average frame size per layer (per-frame-bandwidth per layer). 397 // Actual average frame size per layer. 399 // Average rate mismatch per layer (|target - actual| / target). 403 // Average of the short-time encoder actual bitrate. 484 printf("Average frame size (target vs actual): %f %f bits\n", 486 printf("Average rate_mismatch: %f\n", rc->layer_avg_rate_mismatch[layer]); 502 printf("Average, rms-variance, and percent-fluct: %f %f %f \n", [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_ratectrl.h | 109 int avg_frame_bandwidth; // Average frame size target for clip 155 // Keep track of the last target average frame bandwidth.
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
vpx_convolve8_avg_neon_asm.asm | 154 ; average the new value and the dst value 266 ; average the new value and the dst value
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
initializers.py | 75 elif mode='FAN_AVG': # Average number of inputs and output connections. 139 # Average number of inputs and output connections.
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
_sklearn.py | 157 return np.average(score) 165 return np.average((y_true - y_pred)**2)
|
/external/tensorflow/tensorflow/contrib/model_pruning/ |
README.md | 51 | block_pooling_function| string | AVG | The function to use to pool weight values in a block: average (AVG) or max (MAX)| 137 For some hardware architectures, it may be beneficial to induce spatially correlated sparsity. To train models in which the weight tensors have block sparse structure, set *block_height* and *block_width* hyperparameters to the desired block configuration (2x2, 4x4, 4x1, 1x8, etc). Currently, block sparsity is supported for weight tensors with rank 2 only. The matrix is partitioned into non-overlapping blocks of size *[block_height, block_dim]* and the either the average or max absolute value in this block is taken as a proxy for the entire block (set by *block_pooling_function* hyperparameter).
|
/external/tensorflow/tensorflow/contrib/reduce_slice_ops/kernels/ |
reduce_slice_ops.cc | 83 /* Here assumes the number of average CPU cycles for each slice equals \ 84 * the average length of each slice */ \
|
/external/tensorflow/tensorflow/python/layers/ |
normalization.py | 63 momentum: Momentum for the moving average. 347 # renorm_stddev_weight. This allows us to (1) mix the average 349 # the unbiased average stddev by dividing renorm_stddev by the weight. 435 # Compute the average mean and standard deviation, as if they were 462 """Updates a moving average and weight, returns the unbiased value.""" 466 # accomplished by dividing the exponential moving average by the weight. 467 # For example, after a single update, the moving average would be 687 momentum: Momentum for the moving average. [all...] |
/external/toolchain-utils/crosperf/ |
settings_factory.py | 206 default='average', 208 "Options are 'quiet', 'average', and 'verbose'."))
|
/external/trappy/trappy/plotter/ |
EventPlot.py | 128 # Function to get the average duration of each event 131 # Filter keys with zero average time
|
/external/webrtc/talk/media/base/ |
videoadapter.h | 123 // average. 200 // The weighted average of cpu load over time. It's always updated (if cpu
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.c | 651 /* find closest quantization index, and update quantized average by taking: */ 673 /* Update quantized average by taking: */ 699 /* Update quantized max delay average */ 712 /* update quantized average, shift back to Q9 */ 718 /* update quantized average, shift back to Q9 */ 753 /* adjust bw proportionally to negative average jitter sign */ 840 * update long-term average bitrate and amount of data in buffer 953 * update long-term average bitrate and amount of data in buffer [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
background_noise.cc | 77 // Never go under 1.0 in average sample energy. 239 // Never get under 1.0 in average sample energy.
|
statistics_calculator.cc | 88 // Log the average for the current (incomplete) interval. 266 // Calculate the average of the two. (Works also for odd sizes.)
|