HomeSort by relevance Sort by last modified time
    Searched refs:average (Results 101 - 125 of 318) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/rand/
example_test.go 65 // ExpFloat64 values have an average of 1 but decay exponentially.
68 // NormFloat64 values have an average of 0 and a standard deviation of 1.
  /prebuilts/go/linux-x86/src/math/rand/
example_test.go 65 // ExpFloat64 values have an average of 1 but decay exponentially.
68 // NormFloat64 values have an average of 0 and a standard deviation of 1.
  /external/adhd/scripts/mic_testing/frontend/
recorder.js 100 * Checks average frequency is in allowed error margin
101 * @param {float} average frequency
104 checkFreq = function (average) {
105 if (Math.abs(average - toneFreq) / toneFreq < errorMargin)
  /external/tensorflow/tensorflow/contrib/mpi_collectives/
mpi_ops_test.py 94 summed = mpi.allreduce(tensor, average=False)
138 summed = mpi.allreduce(tensor, average=False)
mpi_allreduce_test.py 82 average=average_allreduce)
  /external/webp/src/utils/
quant_levels_dec_utils.c 11 // surrounding average if it's close enough (that is: the change will be less
13 // We use sliding window for computing the 2d moving average.
135 const uint16_t* const average = p->average_; local
146 const int c = (v << DFIX) + correction[average[x] - (v << LFIX)];
273 VFilter(&p); // accumulate average of input
  /prebuilts/go/darwin-x86/src/runtime/pprof/
protomem.go 75 // which samples to collect, based on the desired average collection
  /prebuilts/go/linux-x86/src/runtime/pprof/
protomem.go 75 // which samples to collect, based on the desired average collection
  /device/google/contexthub/firmware/os/drivers/ams_tmd2772/
ams_tmd2772.c 525 uint16_t average = mData.calibrationSampleTotal / mData.calibrationSampleCount; local
526 uint16_t crosstalk = (average > 0x7f) ? 0x7f : average;
  /external/blktrace/btt/doc/
btt.tex 108 \item[average component times across all IOs] The time line of each IO
113 queue. This is the average time from when the IO enters the block
135 \item Time spent on the request queue. The average time from when
144 \item Driver and device time -- the average time from when the
164 currently average the queue-to-insert and queue-to-merge times,
169 For each row in this output, we provide a minimum, average, maximum
190 as to where IO spend most of the time on average. The following output
218 for the minimum, average and maximum IOs generated.
228 we see that (on average) the block IO layer is combining upwards of
230 resultant average IO size is 124 blocks
    [all...]
  /external/walt/docs/
DragLatency.md 35 The WALT app finds a shift _S_ such that the standard deviation of _y_( _t<sub>i</sub>_ + _S_) is minimal - that is the 'x' marks are as close as possible to a horizontal straight line on the graph below. The reported number is the average of the two time shifts calculated separately for the upper and the lower lines (corresponding to two sides of the finger).
  /external/webrtc/webrtc/modules/video_coding/codecs/tools/
video_quality_measurement.cc 309 Log(" Average: %3.2f\n", result->average);
320 Log(" Average: %3.2f\n", result->average);
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 231 results.putInt(mNameToResultKey.get(appName), average(pssData)); method
234 private int average(List<Integer> pssData) { method in class:MemoryUsageTest
  /frameworks/native/libs/binder/tests/
binderThroughputTest.cpp 146 double average = (double)m_total_time / m_transactions / 1.0E6; local
147 cout << "average:" << average << "ms worst:" << worst << "ms best:" << best << "ms" << endl;
schd-dbg.cpp 247 double average = (double)m_total_time / m_transactions / 1.0E6; local
251 << average << ",\"wst\":" << setw(W) << left << worst
  /prebuilts/go/darwin-x86/test/
maplinear.go 156 // To prevent false positives, average away variation
  /prebuilts/go/linux-x86/test/
maplinear.go 156 // To prevent false positives, average away variation
  /system/libhwbinder/vts/performance/
Benchmark_throughput.cpp 137 double average = (double) m_total_time / m_transactions / 1.0E6; local
138 cout << "average:"
139 << average
  /external/autotest/client/site_tests/firmware_TouchMTB/
fuzzy.py 24 """Define possible score aggregators: average() and product().
30 def average(data): function
31 """The average of the elements in data."""
  /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/webrtc/tools/matlab/
rtpAnalyze.m 126 fprintf('Sent average bitrate: %i kbps\n', ...
129 fprintf('Received average bitrate: %i kbps\n', ...
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
videoprocessor_integrationtest.cc 246 // set by |max_key_size_ * per_frame_bandwidth|. Take middle point/average
508 psnr_result.average, psnr_result.min, ssim_result.average,
511 EXPECT_GT(psnr_result.average, quality_metrics.minimum_avg_psnr);
513 EXPECT_GT(ssim_result.average, quality_metrics.minimum_avg_ssim);
    [all...]
  /external/webrtc/webrtc/test/testsupport/metrics/
video_metrics.cc 56 // Calculates average, min and max values for the supplied struct, if non-NULL.
61 // Calculate average.
67 result->average = metrics_values_sum / result->frames.size();
  /libcore/ojluni/src/main/java/java/util/stream/
IntStream.java 341 * @apiNote Sum, min, max, and average are all special cases of reduction.
368 * @see #average()
520 * @return an {@code OptionalDouble} containing the average element of this
523 OptionalDouble average(); method in interface:IntStream
    [all...]
LongStream.java 345 * @apiNote Sum, min, max, and average are all special cases of reduction.
372 * @see #average()
524 * @return an {@code OptionalDouble} containing the average element of this
527 OptionalDouble average(); method in interface:LongStream
    [all...]

Completed in 398 milliseconds

1 2 3 45 6 7 8 91011>>