Searched defs:newVal (Results 1 - 25 of 38) sorted by relevance

12

/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
H A DcalcBackProject_Demo2.cpp63 Scalar newVal = Scalar( 120, 120, 120 ); local
69 floodFill( src, mask2, seed, newVal, 0, Scalar( lo, lo, lo ), Scalar( up, up, up), flags );
/external/opencv3/samples/cpp/
H A Dffilldemo.cpp52 Scalar newVal = isColor ? Scalar(b, g, r) : Scalar(r*0.299 + g*0.587 + b*0.114); local
59 area = floodFill(dst, mask, seed, newVal, &ccomp, Scalar(lo, lo, lo),
65 area = floodFill(dst, seed, newVal, &ccomp, Scalar(lo, lo, lo),
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineInplaceLU.h314 Scalar newVal = x->coeff(row); local
320 newVal -= x->coeff(col++) * lIt.value();
324 x->coeffRef(row) = newVal;
/external/lzma/CPP/Windows/
H A DRegistry.cpp211 UInt32 newVal; local
212 LONG res = QueryValue(name, newVal);
214 value = newVal;
220 bool newVal; local
221 LONG res = QueryValue(name, newVal);
223 value = newVal;
/external/webrtc/webrtc/modules/audio_coding/test/
H A Dutility.cc166 void CircularBuffer::Update(const double newVal) { argument
172 _buff[_idx] = newVal;
189 _sum += (newVal - oldVal);
195 _sumSqr += (double) (newVal - oldVal) * (double) (newVal + oldVal);
/external/deqp/modules/gles2/functional/
H A Des2fDepthStencilClearTests.cpp477 deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & bufMask; local
478 rowAccess.setPixStencil(newVal, x, 0);
/external/deqp/modules/gles3/functional/
H A Des3fDepthStencilClearTests.cpp480 deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & bufMask; local
481 rowAccess.setPixStencil(newVal, x, 0);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
H A DNumberPicker.java41 void onChanged(NumberPicker picker, int oldVal, int newVal); argument
/external/deqp/modules/gles31/functional/
H A Des31fStencilTexturingTests.cpp191 const int newVal = (oldVal+1)&stencilMask; local
193 dst.setPixStencil(newVal, x, y);
/external/opencv/cv/src/
H A Dcvfloodfill.cpp103 uchar newVal[] = {0,0,0}; local
113 newVal[0] = _newVal[0];
115 img[L] = newVal[0];
118 img[R] = newVal[0];
121 img[L] = newVal[0];
127 ICV_SET_C3( newVal, _newVal );
129 ICV_SET_C3( img + L*3, newVal );
132 ICV_SET_C3( img + L*3, newVal );
135 ICV_SET_C3( img + R*3, newVal );
180 img[i] = newVal[
235 int newVal[] = {0,0,0}; local
383 uchar newVal[] = {0,0,0}; local
689 float newVal[] = {0,0,0}; local
1011 cvFloodFill( CvArr* arr, CvPoint seed_point, CvScalar newVal, CvScalar lo_diff, CvScalar up_diff, CvConnectedComp* comp, int flags, CvArr* maskarr ) argument
[all...]
/external/opencv/cvaux/src/
H A Dcvsegment.cpp87 int* newVal, int d_lw, int d_up,
191 newVal[0] = cvRound( sum[0] * inv_area );
192 newVal[1] = cvRound( sum[1] * inv_area );
193 newVal[2] = cvRound( sum[2] * inv_area );
208 CvSize /*roi*/, int* newVal,
213 uchar uv[] = { (uchar)newVal[0], (uchar)newVal[1], (uchar)newVal[2] };
84 icvSegmFloodFill_Stage1( uchar* pImage, int step, uchar* pMask, int maskStep, CvSize , CvPoint seed, int* newVal, int d_lw, int d_up, CvConnectedComp * region, void *pStack ) argument
206 icvSegmFloodFill_Stage2( uchar* pImage, int step, uchar* pMask, int maskStep, CvSize , int* newVal, CvRect rect ) argument
/external/icu/icu4c/source/i18n/
H A Dtmutfmt.cpp718 MessageFormat** newVal = (MessageFormat**)uprv_malloc(UTMUTFMT_FORMAT_STYLE_COUNT*sizeof(MessageFormat*)); local
719 newVal[0] = (MessageFormat*)value[0]->clone();
720 newVal[1] = (MessageFormat*)value[1]->clone();
721 target->put(UnicodeString(*key), newVal, status);
723 delete newVal[0];
724 delete newVal[1];
725 uprv_free(newVal);
/external/opencv3/modules/imgproc/src/
H A Dfloodfill.cpp131 _Tp newVal, ConnectedComp* region, int flags,
145 img[L] = newVal;
148 img[R] = newVal;
151 img[L] = newVal;
196 img[i] = newVal;
198 img[j] = newVal;
201 img[i] = newVal;
282 Point seed, _Tp newVal, _MTp newMaskVal,
434 img[i] = newVal;
459 Point seedPoint, Scalar newVal, Rec
130 floodFill_CnIR( Mat& image, Point seed, _Tp newVal, ConnectedComp* region, int flags, std::vector<FFillSegment>* buffer ) argument
281 floodFillGrad_CnIR( Mat& image, Mat& msk, Point seed, _Tp newVal, _MTp newMaskVal, Diff diff, ConnectedComp* region, int flags, std::vector<FFillSegment>* buffer ) argument
458 floodFill( InputOutputArray _image, InputOutputArray _mask, Point seedPoint, Scalar newVal, Rect* rect, Scalar loDiff, Scalar upDiff, int flags ) argument
628 floodFill( InputOutputArray _image, Point seedPoint, Scalar newVal, Rect* rect, Scalar loDiff, Scalar upDiff, int flags ) argument
637 cvFloodFill( CvArr* arr, CvPoint seed_point, CvScalar newVal, CvScalar lo_diff, CvScalar up_diff, CvConnectedComp* comp, int flags, CvArr* maskarr ) argument
[all...]
/external/opencv3/modules/java/src/
H A Dcalib3d+Calib3d.java1003 // C++: void filterSpeckles(Mat& img, double newVal, int maxSpeckleSize, double maxDiff, Mat& buf = Mat())
1006 //javadoc: filterSpeckles(img, newVal, maxSpeckleSize, maxDiff, buf)
1007 public static void filterSpeckles(Mat img, double newVal, int maxSpeckleSize, double maxDiff, Mat buf) argument
1010 filterSpeckles_0(img.nativeObj, newVal, maxSpeckleSize, maxDiff, buf.nativeObj);
1015 //javadoc: filterSpeckles(img, newVal, maxSpeckleSize, maxDiff)
1016 public static void filterSpeckles(Mat img, double newVal, int maxSpeckleSize, double maxDiff) argument
1019 filterSpeckles_1(img.nativeObj, newVal, maxSpeckleSize, maxDiff);
1289 // C++: void filterSpeckles(Mat& img, double newVal, int maxSpeckleSize, double maxDiff, Mat& buf = Mat())
1290 private static native void filterSpeckles_0(long img_nativeObj, double newVal, int maxSpeckleSize, double maxDiff, long buf_nativeObj); argument
1291 private static native void filterSpeckles_1(long img_nativeObj, double newVal, in argument
[all...]
H A Dcalib3d.cpp3389 // void filterSpeckles(Mat& img, double newVal, int maxSpeckleSize, double maxDiff, Mat& buf = Mat())
3395 (JNIEnv* env, jclass , jlong img_nativeObj, jdouble newVal, jint maxSpeckleSize, jdouble maxDiff, jlong buf_nativeObj)
3402 cv::filterSpeckles( img, (double)newVal, (int)maxSpeckleSize, (double)maxDiff, buf );
3417 (JNIEnv* env, jclass , jlong img_nativeObj, jdouble newVal, jint maxSpeckleSize, jdouble maxDiff)
3423 cv::filterSpeckles( img, (double)newVal, (int)maxSpeckleSize, (double)maxDiff );
3394 Java_org_opencv_calib3d_Calib3d_filterSpeckles_10(JNIEnv* env, jclass , jlong img_nativeObj, jdouble newVal, jint maxSpeckleSize, jdouble maxDiff, jlong buf_nativeObj) argument
3416 Java_org_opencv_calib3d_Calib3d_filterSpeckles_11(JNIEnv* env, jclass , jlong img_nativeObj, jdouble newVal, jint maxSpeckleSize, jdouble maxDiff) argument
H A Dimgproc+Imgproc.java2009 // C++: int floodFill(Mat& image, Mat& mask, Point seedPoint, Scalar newVal, Rect* rect = 0, Scalar loDiff = Scalar(), Scalar upDiff = Scalar(), int flags = 4)
2012 //javadoc: floodFill(image, mask, seedPoint, newVal, rect, loDiff, upDiff, flags)
2013 public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal, Rect rect, Scalar loDiff, Scalar upDiff, int flags) argument
2016 int retVal = floodFill_0(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3], rect_out, loDiff.val[0], loDiff.val[1], loDiff.val[2], loDiff.val[3], upDiff.val[0], upDiff.val[1], upDiff.val[2], upDiff.val[3], flags);
2021 //javadoc: floodFill(image, mask, seedPoint, newVal)
2022 public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal) argument
2025 int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal
[all...]
/external/valgrind/VEX/priv/
H A Dguest_x86_toIR.c747 'newVal'. If the operation fails, then transfer control (with a
751 static void casLE ( IRExpr* addr, IRExpr* expVal, IRExpr* newVal, argument
756 IRType tyN = typeOfIRExpr(irsb->tyenv, newVal);
763 NULL, mkexpr(expTmp), NULL, newVal );
2365 mkexpr(dst1)/*newVal*/,
6855 mkexpr(tmpt1)/*newVal*/, guest_EIP_curr_instr );
H A Dguest_amd64_toIR.c1606 'newVal'. If the operation fails, then transfer control (with a
1610 static void casLE ( IRExpr* addr, IRExpr* expVal, IRExpr* newVal, argument
1615 IRType tyN = typeOfIRExpr(irsb->tyenv, newVal);
1623 NULL, mkexpr(expTmp), NULL, newVal );
3487 mkexpr(dst1)/*newVal*/,
8581 mkexpr(tmpt1)/*newVal*/, guest_RIP_curr_instr );
[all...]
/external/guice/lib/build/
H A Dspring-beans.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/springframework/beans/ org/springframework/beans/annotation/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/guice/extensions/struts2/lib/
H A Dstruts2-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/struts2/ org/apache/struts2/dispatcher/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c3364 SQLITE_API int SQLITE_STDCALL sqlite3_limit(sqlite3*, int id, int newVal);
134298 unsigned int newVal = va_arg(ap, unsigned int); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c3364 SQLITE_API int SQLITE_STDCALL sqlite3_limit(sqlite3*, int id, int newVal);
134316 unsigned int newVal = va_arg(ap, unsigned int); local
[all...]

Completed in 1492 milliseconds

12