Home
last modified time | relevance | path

Searched refs:maxc (Results 1 – 11 of 11) sorted by relevance

/external/eigen/test/eigen2/
Deigen2_visitor.cpp27 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/
Dvisitor.cpp28 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()
Dredux.cpp29 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/
Djquant2.c279 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/
Djquant2.c262 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/
Djquant2.c279 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/
Dvp9_mcomp.c185 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/
Dvp9_mcomp.c176 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/
Dmcomp.c198 #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/
Dmcomp.c197 #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/
DtcuTexture.cpp397 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()