/external/eigen/test/eigen2/ |
D | eigen2_visitor.cpp | 27 Scalar minc = Scalar(1000), maxc = Scalar(-1000); in matrixVisitor() local 38 if(m(i,j) > maxc) in matrixVisitor() 40 maxc = m(i,j); in matrixVisitor() 54 VERIFY_IS_APPROX(maxc, eigen_maxc); in matrixVisitor() 56 VERIFY_IS_APPROX(maxc, m.maxCoeff()); in matrixVisitor() 73 Scalar minc = Scalar(1000), maxc = Scalar(-1000); in vectorVisitor() local 82 if(v(i) > maxc) in vectorVisitor() 84 maxc = v(i); in vectorVisitor() 95 VERIFY_IS_APPROX(maxc, eigen_maxc); in vectorVisitor() 97 VERIFY_IS_APPROX(maxc, v.maxCoeff()); in vectorVisitor()
|
/external/eigen/test/ |
D | visitor.cpp | 28 Scalar minc = Scalar(1000), maxc = Scalar(-1000); in matrixVisitor() local 39 if(m(i,j) > maxc) in matrixVisitor() 41 maxc = m(i,j); in matrixVisitor() 55 VERIFY_IS_APPROX(maxc, eigen_maxc); in matrixVisitor() 57 VERIFY_IS_APPROX(maxc, m.maxCoeff()); in matrixVisitor() 75 Scalar minc = v(0), maxc = v(0); in vectorVisitor() local 84 if(v(i) > maxc) in vectorVisitor() 86 maxc = v(i); in vectorVisitor() 97 VERIFY_IS_APPROX(maxc, eigen_maxc); in vectorVisitor() 99 VERIFY_IS_APPROX(maxc, v.maxCoeff()); in vectorVisitor()
|
D | redux.cpp | 29 Scalar s(0), p(1), minc(numext::real(m1.coeff(0))), maxc(numext::real(m1.coeff(0))); in matrixRedux() local 36 maxc = (std::max)(numext::real(maxc), numext::real(m1(i,j))); in matrixRedux() 44 VERIFY_IS_APPROX(m1.real().maxCoeff(), numext::real(maxc)); in matrixRedux() 76 RealScalar minc(numext::real(v.coeff(0))), maxc(numext::real(v.coeff(0))); in vectorRedux() local 82 maxc = (std::max)(maxc, numext::real(v[j])); in vectorRedux() 87 VERIFY_IS_APPROX(maxc, v.real().head(i).maxCoeff()); in vectorRedux() 93 RealScalar minc(numext::real(v.coeff(i))), maxc(numext::real(v.coeff(i))); in vectorRedux() local 99 maxc = (std::max)(maxc, numext::real(v[j])); in vectorRedux() 104 VERIFY_IS_APPROX(maxc, v.real().tail(size-i).maxCoeff()); in vectorRedux() 110 RealScalar minc(numext::real(v.coeff(i))), maxc(numext::real(v.coeff(i))); in vectorRedux() local [all …]
|
/external/qemu/distrib/jpeg-6b/ |
D | jquant2.c | 279 register long maxc = 0; in find_biggest_color_pop() local 283 if (boxp->colorcount > maxc && boxp->volume > 0) { in find_biggest_color_pop() 285 maxc = boxp->colorcount; in find_biggest_color_pop()
|
/external/chromium_org/third_party/libjpeg_turbo/ |
D | jquant2.c | 262 register long maxc = 0; in find_biggest_color_pop() local 266 if (boxp->colorcount > maxc && boxp->volume > 0) { in find_biggest_color_pop() 268 maxc = boxp->colorcount; in find_biggest_color_pop()
|
/external/jpeg/ |
D | jquant2.c | 279 register long maxc = 0; in find_biggest_color_pop() local 283 if (boxp->colorcount > maxc && boxp->volume > 0) { in find_biggest_color_pop() 285 maxc = boxp->colorcount; in find_biggest_color_pop()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | 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); in vp9_find_best_sub_pixel_tree() local 393 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); in vp9_find_best_sub_pixel_comp_tree() local
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 176 if (c >= minc && c <= maxc && r >= minr && r <= maxr) { \ 280 const int maxc = MIN(x->mv_col_max * 8, ref_mv->col + MV_MAX); \
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
D | mcomp.c | 198 #define IFMVCV(r,c,s,e) if ( c >= minc && c <= maxc && r >= minr && r <= maxr) s else e; 226 int maxc = MIN(x->mv_col_max * 4, in vp8_find_best_sub_pixel_step_iteratively() local
|
/external/libvpx/libvpx/vp8/encoder/ |
D | 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, in vp8_find_best_sub_pixel_step_iteratively() local
|
/external/deqp/framework/common/ |
D | tcuTexture.cpp | 397 float maxc = de::max(rc, de::max(gc, bc)); in packRGB999E5() local 398 int expp = de::max(-eBias - 1, deFloorFloatToInt32(deFloatLog2(maxc))) + 1 + eBias; in packRGB999E5() 400 int maxs = deFloorFloatToInt32(maxc / e + 0.5f); in packRGB999E5()
|