Searched refs:cont_flag (Results 1 – 8 of 8) sorted by relevance
/external/opencv/cxcore/src/ |
D | cxlogic.cpp | 197 int is_nd = 0, cont_flag = 0; in icvLogicS() local 265 cont_flag = CV_IS_MAT_CONT( src->type & dst->type ); in icvLogicS() 282 cont_flag = CV_IS_MAT_CONT( src->type & dst->type & mask->type ); in icvLogicS() 287 if( !cont_flag ) in icvLogicS() 315 if( cont_flag || tsize.height == 1 ) in icvLogicS() 351 int is_nd = 0, cont_flag = 0; in icvLogic() local 432 cont_flag = CV_IS_MAT_CONT( src1->type & src2->type & dst->type ); in icvLogic() 449 cont_flag = CV_IS_MAT_CONT( src1->type & src2->type & dst->type & mask->type ); in icvLogic() 454 if( !cont_flag ) in icvLogic() 482 if( cont_flag || tsize.height == 1 ) in icvLogic()
|
D | cxarithm.cpp | 284 int y, dy, type, depth, cn, cont_flag = 0; local 416 cont_flag = 1; 436 cont_flag = CV_IS_MAT_CONT( src1->type & src2->type & dst->type & mask->type ); 443 if( !cont_flag ) 492 if( cont_flag || tsize.height == 1 ) 535 int sctype, y, dy, type, depth, cn, coi = 0, cont_flag = 0; in cvSubRS() local 660 cont_flag = 1; in cvSubRS() 680 cont_flag = CV_IS_MAT_CONT( src->type & dst->type & mask->type ); in cvSubRS() 687 if( !cont_flag ) in cvSubRS() 720 if( cont_flag || tsize.height == 1 ) in cvSubRS() [all …]
|
D | cxminmaxloc.cpp | 299 int mat_step, mask_step = 0, cont_flag; in CV_DEF_INIT_FUNC_TAB_2D() local 331 cont_flag = mat->type; in CV_DEF_INIT_FUNC_TAB_2D() 344 cont_flag &= matmask->type; in CV_DEF_INIT_FUNC_TAB_2D() 347 if( CV_IS_MAT_CONT(cont_flag) ) in CV_DEF_INIT_FUNC_TAB_2D()
|
D | cxconvert.cpp | 449 int cont_flag; in cvSplit() local 472 cont_flag = src->type; in cvSplit() 495 cont_flag &= dst[i]->type; in cvSplit() 502 if( CV_IS_MAT_CONT( cont_flag )) in cvSplit() 559 int cont_flag; in cvMerge() local 578 cont_flag = dst->type; in cvMerge() 601 cont_flag &= src[i]->type; in cvMerge() 608 if( CV_IS_MAT_CONT( cont_flag )) in cvMerge() 743 int cont_flag = CV_MAT_CONT_FLAG; in cvMixChannels() local 833 cont_flag &= mat->type; in cvMixChannels() [all …]
|
D | cxmathfuncs.cpp | 337 int cont_flag = CV_MAT_CONT_FLAG; in cvCartToPolar() local 364 cont_flag = mag->type; in cvCartToPolar() 376 cont_flag &= angle->type; in cvCartToPolar() 385 if( CV_IS_MAT_CONT( xmat->type & ymat->type & cont_flag )) in cvCartToPolar() 577 int cont_flag; in cvPolarToCart() local 585 cont_flag = angle->type; in cvPolarToCart() 598 cont_flag &= mag->type; in cvPolarToCart() 612 cont_flag &= xmat->type; in cvPolarToCart() 626 cont_flag &= ymat->type; in cvPolarToCart() 635 if( CV_IS_MAT_CONT( cont_flag )) in cvPolarToCart()
|
D | cxutils.cpp | 819 int cont_flag, arr_size, elem_size, cols, step; in cvRandShuffle() local 837 cont_flag = CV_IS_MAT_CONT(mat->type); in cvRandShuffle() 839 if( elem_size % sizeof_int == 0 && (cont_flag || step % sizeof_int == 0) ) in cvRandShuffle() 854 if( cont_flag ) in cvRandShuffle()
|
D | cxmatmul.cpp | 2472 int cont_flag, vec_delta = 0, vec_step = 0; in cvCalcCovarMatrix() local 2503 cont_flag = avg->type; in cvCalcCovarMatrix() 2515 cont_flag = 0; in cvCalcCovarMatrix() 2576 cont_flag &= vec->type; in cvCalcCovarMatrix() 2605 cont_flag = CV_IS_MAT_CONT( cont_flag ); in cvCalcCovarMatrix() 2606 if( cont_flag ) in cvCalcCovarMatrix()
|
/external/opencv/cv/src/ |
D | cvhistogram.cpp | 1413 int cont_flag = -1; in cvCalcArrHist() local 1451 cont_flag &= mat->type; in cvCalcArrHist() 1468 cont_flag &= mat->type; in cvCalcArrHist() 1472 if( CV_IS_MAT_CONT( cont_flag )) in cvCalcArrHist() 2058 int cont_flag = -1; in cvCalcArrBackProject() local 2095 cont_flag &= mat->type; in cvCalcArrBackProject() 2106 if( CV_IS_MAT_CONT( cont_flag )) in cvCalcArrBackProject()
|