HomeSort by relevance Sort by last modified time
    Searched defs:median (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/net/quic/congestion_control/
channel_estimator.cc 68 size_t median = sorted_bitrate_estimates_.Size() / 2; local
83 if (i == median) {
94 // 25% of the median bitrate we consider the estimate to be uncertain.
  /cts/libs/commonutil/src/com/android/cts/util/
Stat.java 72 * while rejecting outlier +/- median * rejectionThreshold.
79 double median; local
81 median = dataCopied[medianIndex];
83 median = (dataCopied[medianIndex - 1] + dataCopied[medianIndex]) / 2.0;
85 double thresholdMin = median * (1.0 - rejectionThreshold);
86 double thresholdMax = median * (1.0 + rejectionThreshold);
89 double min = median;
90 double max = median;
113 } else { // both median is showing too much diff
114 average = median;
    [all...]
  /external/ceres-solver/examples/
bal_problem.cc 80 double Median(std::vector<double>* data) {
234 // Compute the marginal median of the geometry.
236 Eigen::Vector3d median; local
242 median(i) = Median(&tmp);
247 tmp[i] = (point - median).lpNorm<1>();
250 const double median_absolute_deviation = Median(&tmp);
252 // Scale so that the median absolute deviation of the resulting
256 VLOG(2) << "median: " << median.transpose()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_median_filter.c 86 const unsigned median = num_offsets >> 1; local
136 for (i = 0; i <= median; ++i) {
144 if (i == median)
149 ureg_MOV(shader, o_fragment, ureg_src(t_array[median]));
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_median_filter.c 86 const unsigned median = num_offsets >> 1; local
136 for (i = 0; i <= median; ++i) {
144 if (i == median)
149 ureg_MOV(shader, o_fragment, ureg_src(t_array[median]));
  /external/srec/srec/include/
specnorm.h 64 int median; member in struct:__anon28330
  /hardware/invensense/60xx/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;