/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/ |
H A D | calcBackProject_Demo2.cpp | 63 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 D | ffilldemo.cpp | 52 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 D | SkylineInplaceLU.h | 314 Scalar newVal = x->coeff(row); local 320 newVal -= x->coeff(col++) * lIt.value(); 324 x->coeffRef(row) = newVal;
|
/external/lzma/CPP/Windows/ |
H A D | Registry.cpp | 211 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 D | utility.cc | 166 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 D | es2fDepthStencilClearTests.cpp | 477 deUint32 newVal = ((oldVal & ~clear->stencilMask) | (clear->clearStencil & clear->stencilMask)) & bufMask; local 478 rowAccess.setPixStencil(newVal, x, 0);
|
/external/deqp/modules/gles3/functional/ |
H A D | es3fDepthStencilClearTests.cpp | 480 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 D | NumberPicker.java | 41 void onChanged(NumberPicker picker, int oldVal, int newVal); argument
|
/external/deqp/modules/gles31/functional/ |
H A D | es31fStencilTexturingTests.cpp | 191 const int newVal = (oldVal+1)&stencilMask; local 193 dst.setPixStencil(newVal, x, y);
|
/external/opencv/cv/src/ |
H A D | cvfloodfill.cpp | 103 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 D | cvsegment.cpp | 87 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 D | tmutfmt.cpp | 718 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 D | floodfill.cpp | 131 _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 D | calib3d+Calib3d.java | 1003 // 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 D | calib3d.cpp | 3389 // 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 D | imgproc+Imgproc.java | 2009 // 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 D | guest_x86_toIR.c | 747 '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 D | guest_amd64_toIR.c | 1606 '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 D | spring-beans.jar | META-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 D | org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/slf4j/log4j-over-slf4j/compatibility/lib/ |
H A D | log4j-1.3alpha-8.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ... |
/external/guice/extensions/struts2/lib/ |
H A D | struts2-core-2.2.1.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/struts2/ org/apache/struts2/dispatcher/ ... |
/external/sqlite/dist/orig/ |
H A D | sqlite3.c | 3364 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 D | sqlite3.c | 3364 SQLITE_API int SQLITE_STDCALL sqlite3_limit(sqlite3*, int id, int newVal); 134316 unsigned int newVal = va_arg(ap, unsigned int); local [all...] |