HomeSort by relevance Sort by last modified time
    Searched refs:median (Results 1 - 25 of 28) sorted by null

1 2

  /external/webrtc/src/modules/audio_processing/
echo_cancellation_impl.h 54 virtual int GetDelayMetrics(int* median, int* std);
echo_cancellation_impl.cc 298 int EchoCancellationImpl::GetDelayMetrics(int* median, int* std) {
300 if (median == NULL) {
312 if (WebRtcAec_GetDelayMetrics(my_handle, median, std) !=
  /external/ceres-solver/examples/
bal_problem.cc 62 double Median(std::vector<double>* data) {
216 // Compute the marginal median of the geometry.
218 Eigen::Vector3d median; local
224 median(i) = Median(&tmp);
229 tmp[i] = (point - median).lpNorm<1>();
232 const double median_absolute_deviation = Median(&tmp);
234 // Scale so that the median absolute deviation of the resulting
238 VLOG(2) << "median: " << median.transpose()
    [all...]
  /system/extras/tests/bionic/libc/common/
bench_pthread.c 96 int64_t min, max, avg, median; local
109 /* the median is the center item */
110 median = stats[(min_index+max_index)/2];
126 median*1./SUBCOUNT,
  /external/srec/srec/include/
specnorm.h 64 int median; member in struct:__anon15474
  /external/webrtc/src/modules/audio_processing/aec/interface/
echo_cancellation.h 238 * int* median Delay median value.
244 int WebRtcAec_GetDelayMetrics(void* handle, int* median, int* std);
  /external/srec/srec/clib/
specnorm.c 42 /* Median calculations
78 spec->median = estimate_percentile(spec, spec->estimate_percentile);
97 /* Calculate the median
100 if (spec->count < MIN_COUNT) return(spec->median);
121 log_report("Median margin %d\n", accum / count);
131 /* Calculate the median
201 return (spec_val - spec->median + spec->offset);
239 spec->median = initial_median;
361 spec->median += shift;
  /external/opencv/cv/src/
_cvkdtree.hpp 113 // given point indices and dimension, find index of median; (almost) modifies [first,last)
114 // such that points_in[first,median]<=point[median], points_in(median,last)>point[median].
164 __instype *median = median_partition(first, last, dim, ctor); local
166 __instype *split = median;
168 deref(ctor(*median), dim); ++split);
189 n.boundary = deref(ctor(*median), dim);
cvfundam.cpp 321 double median = count % 2 != 0 ? local
324 if( median < minMedian )
326 minMedian = median;
    [all...]
  /external/blktrace/btt/
output.c 323 long long nseeks, median; member in struct:o_seek_info
354 sip->median / sip->nseeks, new_list->mode, new_list->nseeks);
397 long long median; local
404 median = seeki_median(handle);
409 median, nmodes > 0 ? m.modes[0] : 0, m.most_seeks);
423 nseeks, mean, median,
432 seek_info.median += (nseeks * median);
454 "MEAN", "MEDIAN", "MODE");
460 "Overall", "NSEEKS", "MEAN", "MEDIAN", "MODE")
    [all...]
  /external/webkit/PerformanceTests/Parser/resources/
runner.js 64 log("median " + computeMedian(times));
  /hardware/invensense/mlsdk/mllite/
compass.c 107 float avg, sum, median, sorted[YAS_DEFAULT_FILTER_LEN]; local
131 median = sorted[adap_filter->len/2];
140 return median;
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 330 // The delay metrics consists of the delay |median| and the delay standard
333 virtual int GetDelayMetrics(int* median, int* std) = 0;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 178 ; Find the median of the 3 candidate MV's
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 178 ; Find the median of the 3 candidate MV's
  /external/webrtc/src/modules/audio_processing/aec/
echo_cancellation.c 802 int WebRtcAec_GetDelayMetrics(void* handle, int* median, int* std) {
814 if (median == NULL) {
840 *median = -1;
845 delay_values = num_delay_values >> 1; // Start value for median count down
846 // Get median of delay values since last update
855 *median = (my_median - kLookaheadBlocks) * kMsPerBlock;
857 // Calculate the L1 norm, with median value as central moment
  /external/webrtc/src/modules/audio_processing/test/
unit_test.cc 523 int median = 0; local
526 apm_->echo_cancellation()->GetDelayMetrics(&median, &std));
1166 int median = 0; local
    [all...]
process_test.cc 908 int median = 0; local
910 apm->echo_cancellation()->GetDelayMetrics(&median, &std);
912 printf("Median: %3d\n", median);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeframe.c 144 /* Find median: Simple n^2 algorithm for experimentation */
146 unsigned int median; local
178 /* Even number MBs so estimate median as mean of two either side. */
179 median = ( 1 + sortlist[cpi->common.MBs >> 1] +
182 cpi->activity_avg = median;
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner.py     [all...]
  /external/blktrace/btt/doc/
btt.tex 240 IOs, the \emph{median} value for all seeks, and the \emph{mode} -
250 DEV | NSEEKS MEAN MEDIAN | MODE
255 We have almost exclusively seen median and mode values of 0, indicating
    [all...]
  /external/v8/src/
array.js 782 // Find a pivot as the median of first, last and middle element.
    [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 572 milliseconds

1 2