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

  /external/srec/srec/include/
specnorm.h 64 int median; member in struct:__anon12671
  /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;
  /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/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);