Lines Matching refs:val0

102     int val0[] = {0,0,0};  in icvFloodFill_8u_CnIR()  local
112 val0[0] = img[L]; in icvFloodFill_8u_CnIR()
117 while( ++R < roi.width && img[R] == val0[0] ) in icvFloodFill_8u_CnIR()
120 while( --L >= 0 && img[L] == val0[0] ) in icvFloodFill_8u_CnIR()
126 ICV_SET_C3( val0, img + L*3 ); in icvFloodFill_8u_CnIR()
131 while( --L >= 0 && ICV_EQ_C3( img + L*3, val0 )) in icvFloodFill_8u_CnIR()
134 while( ++R < roi.width && ICV_EQ_C3( img + R*3, val0 )) in icvFloodFill_8u_CnIR()
177 if( (unsigned)i < (unsigned)roi.width && img[i] == val0[0] ) in icvFloodFill_8u_CnIR()
181 while( --j >= 0 && img[j] == val0[0] ) in icvFloodFill_8u_CnIR()
184 while( ++i < roi.width && img[i] == val0[0] ) in icvFloodFill_8u_CnIR()
193 if( (unsigned)i < (unsigned)roi.width && ICV_EQ_C3( img + i*3, val0 )) in icvFloodFill_8u_CnIR()
197 while( --j >= 0 && ICV_EQ_C3( img + j*3, val0 )) in icvFloodFill_8u_CnIR()
200 while( ++i < roi.width && ICV_EQ_C3( img + i*3, val0 )) in icvFloodFill_8u_CnIR()
234 int val0[] = {0,0,0}; in icvFloodFill_32f_CnIR() local
244 val0[0] = img[L]; in icvFloodFill_32f_CnIR()
249 while( ++R < roi.width && img[R] == val0[0] ) in icvFloodFill_32f_CnIR()
252 while( --L >= 0 && img[L] == val0[0] ) in icvFloodFill_32f_CnIR()
258 ICV_SET_C3( val0, img + L*3 ); in icvFloodFill_32f_CnIR()
263 while( --L >= 0 && ICV_EQ_C3( img + L*3, val0 )) in icvFloodFill_32f_CnIR()
266 while( ++R < roi.width && ICV_EQ_C3( img + R*3, val0 )) in icvFloodFill_32f_CnIR()
309 if( (unsigned)i < (unsigned)roi.width && img[i] == val0[0] ) in icvFloodFill_32f_CnIR()
313 while( --j >= 0 && img[j] == val0[0] ) in icvFloodFill_32f_CnIR()
316 while( ++i < roi.width && img[i] == val0[0] ) in icvFloodFill_32f_CnIR()
325 if( (unsigned)i < (unsigned)roi.width && ICV_EQ_C3( img + i*3, val0 )) in icvFloodFill_32f_CnIR()
329 while( --j >= 0 && ICV_EQ_C3( img + j*3, val0 )) in icvFloodFill_32f_CnIR()
332 while( ++i < roi.width && ICV_EQ_C3( img + i*3, val0 )) in icvFloodFill_32f_CnIR()
382 int sum[] = {0,0,0}, val0[] = {0,0,0}; in icvFloodFill_Grad_8u_CnIR() local
405 val0[i] = img[L*cn+i]; in icvFloodFill_Grad_8u_CnIR()
412 while( !mask[R + 1] && DIFF_INT_C1( img + (R+1), val0 )) in icvFloodFill_Grad_8u_CnIR()
415 while( !mask[L - 1] && DIFF_INT_C1( img + (L-1), val0 )) in icvFloodFill_Grad_8u_CnIR()
431 while( !mask[R + 1] && DIFF_INT_C3( img + (R+1)*3, val0 )) in icvFloodFill_Grad_8u_CnIR()
434 while( !mask[L - 1] && DIFF_INT_C3( img + (L-1)*3, val0 )) in icvFloodFill_Grad_8u_CnIR()
489 if( !mask[i] && DIFF_INT_C1( img + i, val0 )) in icvFloodFill_Grad_8u_CnIR()
493 while( !mask[--j] && DIFF_INT_C1( img + j, val0 )) in icvFloodFill_Grad_8u_CnIR()
496 while( !mask[++i] && DIFF_INT_C1( img + i, val0 )) in icvFloodFill_Grad_8u_CnIR()
577 if( !mask[i] && DIFF_INT_C3( img + i*3, val0 )) in icvFloodFill_Grad_8u_CnIR()
581 while( !mask[--j] && DIFF_INT_C3( img + j*3, val0 )) in icvFloodFill_Grad_8u_CnIR()
584 while( !mask[++i] && DIFF_INT_C3( img + i*3, val0 )) in icvFloodFill_Grad_8u_CnIR()
688 double sum[] = {0,0,0}, val0[] = {0,0,0}; in icvFloodFill_Grad_32f_CnIR() local
711 val0[i] = img[L*cn+i]; in icvFloodFill_Grad_32f_CnIR()
718 while( !mask[R + 1] && DIFF_FLT_C1( img + (R+1), val0 )) in icvFloodFill_Grad_32f_CnIR()
721 while( !mask[L - 1] && DIFF_FLT_C1( img + (L-1), val0 )) in icvFloodFill_Grad_32f_CnIR()
737 while( !mask[R + 1] && DIFF_FLT_C3( img + (R+1)*3, val0 )) in icvFloodFill_Grad_32f_CnIR()
740 while( !mask[L - 1] && DIFF_FLT_C3( img + (L-1)*3, val0 )) in icvFloodFill_Grad_32f_CnIR()
795 if( !mask[i] && DIFF_FLT_C1( img + i, val0 )) in icvFloodFill_Grad_32f_CnIR()
799 while( !mask[--j] && DIFF_FLT_C1( img + j, val0 )) in icvFloodFill_Grad_32f_CnIR()
802 while( !mask[++i] && DIFF_FLT_C1( img + i, val0 )) in icvFloodFill_Grad_32f_CnIR()
884 if( !mask[i] && DIFF_FLT_C3( img + i*3, val0 )) in icvFloodFill_Grad_32f_CnIR()
888 while( !mask[--j] && DIFF_FLT_C3( img + j*3, val0 )) in icvFloodFill_Grad_32f_CnIR()
891 while( !mask[++i] && DIFF_FLT_C3( img + i*3, val0 )) in icvFloodFill_Grad_32f_CnIR()