Searched defs:_dst (Results 1 - 6 of 6) sorted by relevance

/external/libvpx/
H A Dy4minput.c147 static void y4m_42xmpeg2_42xjpeg_helper(unsigned char *_dst, argument
156 _dst[x]=(unsigned char)OC_CLAMPI(0,(4*_src[0]-17*_src[OC_MAXI(x-1,0)]+
161 _dst[x]=(unsigned char)OC_CLAMPI(0,(4*_src[x-2]-17*_src[x-1]+
165 _dst[x]=(unsigned char)OC_CLAMPI(0,(4*_src[x-2]-17*_src[x-1]+
169 _dst+=_c_w;
175 static void y4m_convert_42xmpeg2_42xjpeg(y4m_input *_y4m,unsigned char *_dst, argument
184 _dst+=_y4m->pic_w*_y4m->pic_h;
190 y4m_42xmpeg2_42xjpeg_helper(_dst,_aux,c_w,c_h);
191 _dst+=c_sz;
239 static void y4m_convert_42xpaldv_42xjpeg(y4m_input *_y4m,unsigned char *_dst, argument
325 y4m_422jpeg_420jpeg_helper(unsigned char *_dst, const unsigned char *_src,int _c_w,int _c_h) argument
391 y4m_convert_422jpeg_420jpeg(y4m_input *_y4m,unsigned char *_dst, unsigned char *_aux) argument
458 y4m_convert_422_420jpeg(y4m_input *_y4m,unsigned char *_dst, unsigned char *_aux) argument
533 y4m_convert_411_420jpeg(y4m_input *_y4m,unsigned char *_dst, unsigned char *_aux) argument
596 y4m_convert_444_420jpeg(y4m_input *_y4m,unsigned char *_dst, unsigned char *_aux) argument
648 y4m_convert_mono_420jpeg(y4m_input *_y4m,unsigned char *_dst, unsigned char *_aux) argument
658 y4m_convert_null(y4m_input *_y4m,unsigned char *_dst, unsigned char *_aux) argument
[all...]
/external/opencv/cv/src/
H A Dcvcanny.cpp343 uchar* _dst = dst->data.ptr + dst->step*i; local
346 _dst[j] = (uchar)-(_map[j] >> 1);
H A Dcvundistort.cpp109 cvUndistort2( const CvArr* _src, CvArr* _dst, const CvMat* A, const CvMat* dist_coeffs ) argument
120 CvMat dststub, *dst = (CvMat*)_dst;
371 cvUndistortPoints( const CvMat* _src, CvMat* _dst, const CvMat* _cameraMatrix, argument
390 CV_ASSERT( CV_IS_MAT(_src) && CV_IS_MAT(_dst) &&
392 (_dst->rows == 1 || _dst->cols == 1) &&
393 CV_ARE_SIZES_EQ(_src, _dst) &&
395 (CV_MAT_TYPE(_dst->type) == CV_32FC2 || CV_MAT_TYPE(_dst->type) == CV_64FC2));
426 dstf = (CvPoint2D32f*)_dst
[all...]
H A Dcvfundam.cpp1201 CvMat _src, _dst, _ones; local
1259 dst = cvReshape( dst, &_dst, 1, d_count );
1281 dst = cvGetSubRect( dst, &_dst, cvRect( 0, 0, s_dims, d_count ));
1286 dst = cvGetSubRect( dst, &_dst, cvRect( 0, 0, d_count, s_dims ));
/external/opencv/cxcore/src/
H A Dcxutils.cpp1051 cvSort( const CvArr* _src, CvArr* _dst, CvArr* _idx, int flags ) argument
1061 CvMat dstub, *dst = _dst ? cvGetMat(_dst, &dstub) : 0;
/external/opencv/ml/src/
H A Dml_inner_functions.cpp1374 uchar* _dst = dst + dst_step*(idx ? idx[i] : i); local
1377 ((float*)_dst)[j] = (float)((int*)src)[j];
1380 ((double*)_dst)[j] = ((int*)src)[j];
1385 uchar* _dst = dst + dst_step*(idx ? idx[i] : i); local
1388 ((int*)_dst)[j] = cvRound(((float*)src)[j]);
1391 ((int*)_dst)[j] = cvRound(((double*)src)[j]);
1397 uchar* _dst = dst + dst_step*(idx ? idx[i] : i); local
1400 ((double*)_dst)[j] = ((float*)src)[j];
1403 ((float*)_dst)[j] = (float)((double*)src)[j];

Completed in 118 milliseconds