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

  /external/eigen/test/eigen2/
eigen2_visitor.cpp 27 Scalar minc = Scalar(1000), maxc = Scalar(-1000); local
38 if(m(i,j) > maxc)
40 maxc = m(i,j);
54 VERIFY_IS_APPROX(maxc, eigen_maxc);
56 VERIFY_IS_APPROX(maxc, m.maxCoeff());
73 Scalar minc = Scalar(1000), maxc = Scalar(-1000); local
82 if(v(i) > maxc)
84 maxc = v(i);
95 VERIFY_IS_APPROX(maxc, eigen_maxc);
97 VERIFY_IS_APPROX(maxc, v.maxCoeff())
    [all...]
  /external/eigen/test/
visitor.cpp 28 Scalar minc = Scalar(1000), maxc = Scalar(-1000); local
39 if(m(i,j) > maxc)
41 maxc = m(i,j);
55 VERIFY_IS_APPROX(maxc, eigen_maxc);
57 VERIFY_IS_APPROX(maxc, m.maxCoeff());
75 Scalar minc = v(0), maxc = v(0); local
84 if(v(i) > maxc)
86 maxc = v(i);
97 VERIFY_IS_APPROX(maxc, eigen_maxc);
99 VERIFY_IS_APPROX(maxc, v.maxCoeff())
    [all...]
  /external/opencv3/modules/imgproc/src/
phasecorr.cpp 419 int maxc = peakLocation.x + (weightBoxSize.width >> 1); local
440 if(maxc > src.cols - 1)
442 maxc = src.cols - 1;
451 for(int x = minc; x <= maxc; x++)
467 for(int x = minc; x <= maxc; x++)
  /external/fio/
gettime.c 261 uint64_t minc, maxc, avg, cycles[NR_TIME_ITERS]; local
285 maxc = samples = avg = 0;
290 maxc = max(cycles[i], maxc);
308 maxc /= 10;
312 (unsigned long long) maxc, mean, S);
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 201 #define IFMVCV(r,c,s,e) if ( c >= minc && c <= maxc && r >= minr && r <= maxr) s else e;
229 int maxc = VPXMIN(x->mv_col_max * 4, local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
mcomp.c 197 #define IFMVCV(r,c,s,e) if ( c >= minc && c <= maxc && r >= minr && r <= maxr) s else e;
225 int maxc = MIN(x->mv_col_max * 4, local
    [all...]
  /ndk/sources/host-tools/make-3.81/
alloca.c 300 long maxc; /* Amount of contiguous space which would member in struct:stk_stat
  /toolchain/binutils/binutils-2.25/libiberty/
alloca.c 283 long maxc; /* Amount of contiguous space which would member in struct:stk_stat
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btBoxBoxDetector.cpp 45 // `maxc' is the maximum number of contacts allowed to be generated, i.e.
261 int maxc, dContactGeom * /*contact*/, int /*skip*/,btDiscreteCollisionDetectorInterface::Result& output);
266 int maxc, dContactGeom * /*contact*/, int /*skip*/,btDiscreteCollisionDetectorInterface::Result& output)
606 if (maxc > cnum) maxc = cnum;
607 if (maxc < 1) maxc = 1;
609 if (cnum <= maxc) {
648 cullPoints2 (cnum,ret,maxc,i1,iret);
650 for (j=0; j < maxc; j++)
704 int maxc = 4; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mcomp.c 185 if (c >= minc && c <= maxc && r >= minr && r <= maxr) { \
294 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); local
393 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); local
    [all...]
  /external/libjpeg-turbo/
jquant2.c 257 register long maxc = 0; local
261 if (boxp->colorcount > maxc && boxp->volume > 0) {
263 maxc = boxp->colorcount;
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 177 if (c >= minc && c <= maxc && r >= minr && r <= maxr) { \
302 const int maxc = VPXMIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); \
673 const int maxc = VPXMIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); local
702 if (tc >= minc && tc <= maxc && tr >= minr && tr <= maxr) {
733 if (tc >= minc && tc <= maxc && tr >= minr && tr <= maxr) {
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jquant2.c 280 register long maxc = 0; local
284 if (boxp->colorcount > maxc && boxp->volume > 0) {
286 maxc = boxp->colorcount;
    [all...]
  /external/toybox/generated/
globals.h 780 int maxc; member in struct:tcpsvd_data

Completed in 313 milliseconds