/external/opencv/cv/src/ |
D | cvmoments.cpp | 384 CvMomentIPPFunc ipp_func = 0; in cvMoments() local 442 ipp_func = (CvMomentIPPFunc)icvMoments_8u_C1R_p; in cvMoments() 444 ipp_func = (CvMomentIPPFunc)icvMoments_32f_C1R_p; in cvMoments() 446 if( ipp_func && !binary ) in cvMoments() 450 IPPI_CALL( ipp_func( mat->data.ptr, matstep, size, ippmomentstate )); in cvMoments()
|
D | cvdistransform.cpp | 721 CvIPPDistTransFunc ipp_func = 0; in cvDistTransform() local 780 ipp_func = (CvIPPDistTransFunc)(maskSize == CV_DIST_MASK_3 ? in cvDistTransform() 783 ipp_func = (CvIPPDistTransFunc)icvDistanceTransform_3x3_8u_C1R_p; in cvDistTransform() 790 if( (ipp_func || ipp_inp_func) && src->cols >= 4 && src->rows >= 2 ) in cvDistTransform() 796 if( ipp_func ) in cvDistTransform() 798 IPPI_CALL( ipp_func( src->data.ptr, src->step, in cvDistTransform()
|
D | cvpyramids.cpp | 946 CvPyramidIPPFunc ipp_func = 0; in cvPyrUp() local 986 ipp_func = type == CV_8UC1 ? icvPyrUp_Gauss5x5_8u_C1R_p : in cvPyrUp() 991 use_ipp = ipp_func && icvPyrUpGetBufSize_Gauss5x5_p( size.width, in cvPyrUp() 1009 IPPI_CALL( ipp_func( src->data.ptr, src->step ? src->step : CV_STUB_STEP, in cvPyrUp() 1039 CvPyramidIPPFunc ipp_func = 0; in cvPyrDown() local 1093 ipp_func = type == CV_8UC1 ? icvPyrDown_Gauss5x5_8u_C1R_p : in cvPyrDown() 1098 use_ipp = ipp_func && icvPyrDownGetBufSize_Gauss5x5_p( src_size2.width, in cvPyrDown() 1118 IPPI_CALL( ipp_func( src->data.ptr, src->step ? src->step : CV_STUB_STEP, in cvPyrDown()
|
D | cvimgwarp.cpp | 676 CvResizeIPPFunc ipp_func = in cvResize() local 686 if( ipp_func && (CV_INTER_NN < method && method < CV_INTER_AREA)) in cvResize() 690 IPPI_CALL( ipp_func( src->data.ptr, ssize, srcstep, in cvResize() 1138 CvWarpAffineBackIPPFunc ipp_func = in cvWarpAffine() local 1146 if( ipp_func && CV_INTER_NN <= method && method <= CV_INTER_AREA ) in cvWarpAffine() 1157 if( ipp_func( src->data.ptr, ssize, srcstep, srcroi, in cvWarpAffine() 1409 CvWarpPerspectiveBackIPPFunc ipp_func = in cvWarpPerspective() local 1417 if( ipp_func && CV_INTER_NN <= method && method <= CV_INTER_AREA && in cvWarpPerspective() 1430 status = ipp_func( src->data.ptr, ssize, srcstep, srcroi, in cvWarpPerspective() 1436 ipp_func = type == CV_8UC1 ? icvWarpPerspective_8u_C1R_p : in cvWarpPerspective() [all …]
|
D | cvtemplmatch.cpp | 387 CvTemplMatchIPPFunc ipp_func = in cvMatchTemplate() local 396 if( ipp_func ) in cvMatchTemplate() 400 IPPI_CALL( ipp_func( img->data.ptr, img->step ? img->step : CV_STUB_STEP, in cvMatchTemplate()
|
D | cvcolor.cpp | 311 int blue_idx, CvColorCvtFunc0 ipp_func ) \ 320 return ipp_func( src, srcstep, dst, dststep, size ); \ 345 status = ipp_func( buffer, CV_STUB_STEP, \ 359 int blue_idx, CvColorCvtFunc0 ipp_func ) in icvBGRx2ABC_IPP_8u_CnC3R() argument 368 return ipp_func( src, srcstep, dst, dststep, size ); in icvBGRx2ABC_IPP_8u_CnC3R() 393 status = ipp_func( buffer, CV_STUB_STEP, in icvBGRx2ABC_IPP_8u_CnC3R() 413 int blue_idx, CvColorCvtFunc0 ipp_func ) \ 422 return ipp_func( src, srcstep, dst, dststep, size ); \ 437 status = ipp_func( src1, CV_STUB_STEP, \
|
D | cvfilter.cpp | 2636 CvFilterIPPFunc ipp_func = in cvFilter2D() local 2647 if( ipp_func ) in cvFilter2D() 2692 IPPI_CALL( ipp_func( shifted_ptr, temp_step, in cvFilter2D()
|
/external/opencv/cxcore/src/ |
D | cxmatmul.cpp | 1761 CvColorTwistIPPFunc ipp_func = 0; in cvTransform() local 1769 ipp_func = type == CV_8UC3 ? icvColorTwist_8u_C3R_p : in cvTransform() 1782 ipp_func = type == CV_8UC3 ? icvColorToGray_8u_C3C1R_p : in cvTransform() 1787 ipp_func = type == CV_8UC4 ? icvColorToGray_8u_AC4C1R_p : in cvTransform() 1831 if( ipp_func ) in cvTransform() 1865 else if( ipp_func ) in cvTransform() 1867 IPPI_CALL( ipp_func( src->data.ptr, srcstep, dst->data.ptr, in cvTransform() 1896 else if( ipp_func ) in cvTransform() 1898 IPPI_CALL( ipp_func( srcptr, CV_STUB_STEP, dstptr, CV_STUB_STEP, in cvTransform()
|