Searched refs:val0 (Results 1 - 19 of 19) sorted by relevance

/external/opencv/cv/src/
H A Dcvcalccontrasthistogram.cpp123 int val0 = chdims[t + 128];
125 array[val0] += MIN( t - v1_r, v2_r - t );
126 n[val0]++;
137 int val0 = chdims[t + 128];
139 array[val0] += MIN( t - v1_d, v2_d - t );
140 n[val0]++;
243 int val0 = chdims[t + 128];
245 array[val0] += MIN( t - v1_r, v2_r - t );
246 n[val0]++;
261 int val0
[all...]
H A Dcvfloodfill.cpp102 int val0[] = {0,0,0}; local
112 val0[0] = img[L];
117 while( ++R < roi.width && img[R] == val0[0] )
120 while( --L >= 0 && img[L] == val0[0] )
126 ICV_SET_C3( val0, img + L*3 );
131 while( --L >= 0 && ICV_EQ_C3( img + L*3, val0 ))
134 while( ++R < roi.width && ICV_EQ_C3( img + R*3, val0 ))
177 if( (unsigned)i < (unsigned)roi.width && img[i] == val0[0] )
181 while( --j >= 0 && img[j] == val0[0] )
184 while( ++i < roi.width && img[i] == val0[
234 int val0[] = {0,0,0}; local
382 int sum[] = {0,0,0}, val0[] = {0,0,0}; local
688 double sum[] = {0,0,0}, val0[] = {0,0,0}; local
[all...]
H A Dcvsurf.cpp200 float val0 = hessian[j]; local
201 if( val0 > params->hessianThreshold )
220 if( val0 < hessian[0] || val0 < hessian[1] || val0 < hessian[2] ||
221 val0 < hessian[hcols_z] || val0 < hessian[hcols_z+1] ||
222 val0 < hessian[hcols_z+2] || val0 < hessian[hcols_z*2] ||
223 val0 < hessia
[all...]
H A Dcvsmooth.cpp1100 int val0 = sptr[j];
1104 float w = space_weight[k]*color_weight[abs(val - val0)];
1243 float val0 = sptr[j];
1247 float alpha = (float)(fabs(val - val0)*scale_index);
H A Dcvhistogram.cpp766 float val0 = -FLT_MAX; local
774 if( val <= val0 )
776 val0 = dim_ranges[j] = val;
/external/eigen/Eigen/src/Core/
H A DArray.h145 EIGEN_STRONG_INLINE Array(const T0& val0, const T1& val1) argument
148 this->template _init2<T0,T1>(val0, val1);
158 Array(const Scalar& val0, const Scalar& val1);
162 EIGEN_STRONG_INLINE Array(const Scalar& val0, const Scalar& val1, const Scalar& val2) argument
166 m_storage.data()[0] = val0;
171 EIGEN_STRONG_INLINE Array(const Scalar& val0, const Scalar& val1, const Scalar& val2, const Scalar& val3) argument
175 m_storage.data()[0] = val0;
H A DPlainObjectBase.h633 EIGEN_STRONG_INLINE void _init2(const Scalar& val0, const Scalar& val1, typename internal::enable_if<Base::SizeAtCompileTime==2,T0>::type* = 0) argument
636 m_storage.data()[0] = val0;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp1659 Value *val0 = NULL;
1669 val0 = getScratch();
1670 mkOp2(OP_MAX, TYPE_F32, val0, fetchSrc(0, 0), zero);
1672 mkMov(dst0[1], val0);
1687 mkCmp(OP_SLCT, CC_GT, TYPE_F32, dst0[2], val3, zero, val0);
1731 Value *val0, *val1;
1807 val0 = getScratch();
1808 mkOp1(OP_ABS, TYPE_F32, val0, src0);
1809 mkOp1(OP_RSQ, TYPE_F32, val0, val0);
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp1659 Value *val0 = NULL;
1669 val0 = getScratch();
1670 mkOp2(OP_MAX, TYPE_F32, val0, fetchSrc(0, 0), zero);
1672 mkMov(dst0[1], val0);
1687 mkCmp(OP_SLCT, CC_GT, TYPE_F32, dst0[2], val3, zero, val0);
1731 Value *val0, *val1;
1807 val0 = getScratch();
1808 mkOp1(OP_ABS, TYPE_F32, val0, src0);
1809 mkOp1(OP_RSQ, TYPE_F32, val0, val0);
[all...]
/external/opencv/cvaux/src/
H A Dcamshift.cpp122 int val0 = color_data[x*3]; local
125 if( m_min_ch_val[0] <= val0 && val0 <= m_max_ch_val[0] &&
132 planes[0][x] = (uchar)val0;
H A Dcvsegment.cpp100 int val0[3]; local
107 val0[0] = img[seed.x*3];
108 val0[1] = img[seed.x*3 + 1];
109 val0[2] = img[seed.x*3 + 2];
111 while( DIFF( img + (R+1)*3, /*img + R*3*/val0 ) && !mask[R + 1] )
114 while( DIFF( img + (L-1)*3, /*img + L*3*/val0 ) && !mask[L - 1] )
152 if( !mask[i] && DIFF( img + i*3, /*img - curstep + i*3*/val0 ))
156 while( !mask[j - 1] && DIFF( img + (j - 1)*3, /*img + j*3*/val0 ))
160 (DIFF( img + (i+1)*3, /*img + i*3*/val0 ) ||
161 (DIFF( img + (i+1)*3, /*img + (i+1)*3 - curstep*/val0)
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_stipple.c78 const float *val0 = v0->data[attr]; local
83 newv[i] = val0[i] + t * (val1[i] - val0[i]);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_stipple.c78 const float *val0 = v0->data[attr]; local
83 newv[i] = val0[i] + t * (val1[i] - val0[i]);
/external/opencv/cxcore/src/
H A Dcxmathfuncs.cpp829 int val0, val1, val2, val3, t; local
843 val0 = cvRound(x0);
848 x0 = (x0 - val0)*exp_postscale;
853 t = (val0 >> EXPTAB_SCALE) + 1023;
869 x0 = buf[0].d * icvExpTab[val0 & EXPTAB_MASK] * EXPPOLY( x0 );
885 int val0, t; local
890 val0 = cvRound(x0);
891 t = (val0 >> EXPTAB_SCALE) + 1023;
895 x0 = (x0 - val0)*exp_postscale;
897 y[i] = (float)(buf[0].d * icvExpTab[val0
936 int val0, val1, val2, val3, t; local
996 int val0, t; local
[all...]
/external/opencv/cxcore/include/
H A Dcxtypes.h1117 CV_INLINE CvScalar cvScalar( double val0, double val1 CV_DEFAULT(0), argument
1121 scalar.val[0] = val0; scalar.val[1] = val1;
1127 CV_INLINE CvScalar cvRealScalar( double val0 )
1130 scalar.val[0] = val0;
/external/vixl/src/a64/
H A Dsimulator-a64.cc374 void Simulator::FPCompare(double val0, double val1) {
379 if ((std::isnan(val0) != 0) || (std::isnan(val1) != 0)) {
381 } else if (val0 < val1) {
383 } else if (val0 > val1) {
385 } else if (val0 == val1) {
H A Dsimulator-a64.h526 void FPCompare(double val0, double val1);
/external/chromium_org/v8/src/arm64/
H A Dsimulator-arm64.cc975 void Simulator::FPCompare(double val0, double val1) { argument
980 if ((std::isnan(val0) != 0) || (std::isnan(val1) != 0)) {
982 } else if (val0 < val1) {
984 } else if (val0 > val1) {
986 } else if (val0 == val1) {
H A Dsimulator-arm64.h715 void FPCompare(double val0, double val1);

Completed in 8990 milliseconds