Searched refs:src_type (Results 1 - 7 of 7) sorted by relevance

/external/opencv/cv/src/
H A Dcvderiv.cpp188 int src_type, dst_type; local
200 src_type = CV_MAT_TYPE( src->type );
208 (src_type == CV_8UC1 && dst_type == CV_16SC1/* ||
209 src_type == CV_32FC1 && dst_type == CV_32FC1*/) )
223 if( src_type == CV_8U )
232 if( src_type == CV_8U )
246 if( src_type == CV_8U )
255 if( src_type == CV_8U )
264 if( src_type == CV_8U )
273 if( src_type
810 int src_type, dst_type; local
[all...]
H A Dcvsmooth.cpp133 if( CV_MAT_DEPTH(src_type) == CV_8U )
135 else if( CV_MAT_DEPTH(src_type) == CV_32F )
148 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U )
154 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U )
161 if( CV_MAT_DEPTH(src_type) != CV_32F )
181 s = sum = buf_end + cvAlign((width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN);
1328 int src_type, dst_type, depth, cn;
1338 src_type = CV_MAT_TYPE( src->type );
1340 depth = CV_MAT_DEPTH(src_type);
1341 cn = CV_MAT_CN(src_type);
[all...]
H A Dcvfilter.cpp104 int max_depth = MAX(CV_MAT_DEPTH(src_type), CV_MAT_DEPTH(dst_type));
105 int max_cn = MAX(CV_MAT_CN(src_type), CV_MAT_CN(dst_type));
108 trow_sz = cvAlign( (max_width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN );
112 work_type = src_type;
135 if( !(buffer && _max_width <= max_width && _src_type == src_type &&
143 src_type = CV_MAT_TYPE(_src_type);
173 src_pix_sz = CV_ELEM_SIZE(src_type);
193 cvScalarToRawData( &border_value, border_tab, src_type, 0 );
202 int pix_sz = CV_ELEM_SIZE(src_type), work_pix_sz = CV_ELEM_SIZE(work_type);
344 int pix_size = CV_ELEM_SIZE(src_type);
[all...]
H A Dcvmorph.cpp225 int cn = CV_MAT_CN(src_type);
282 int i, cn = CV_MAT_CN(src_type);
325 int pix_size = CV_ELEM_SIZE(src_type);
328 if( CV_MAT_DEPTH(src_type) != CV_32F )
/external/opencv/ml/src/
H A Dml_inner_functions.cpp1330 icvConvertDataToSparse( const uchar* src, int src_step, int src_type, argument
1339 src_type = CV_MAT_TYPE(src_type);
1342 if( CV_MAT_CN(src_type) != 1 || CV_MAT_CN(dst_type) != 1 )
1346 src_step = CV_ELEM_SIZE(src_type);
1353 if( !idx && CV_ELEM_SIZE(src_type)*size.width == src_step &&
1360 if( src_type == dst_type )
1371 else if( src_type == CV_32SC1 && (dst_type == CV_32FC1 || dst_type == CV_64FC1) )
1382 else if( (src_type == CV_32FC1 || src_type
[all...]
/external/opencv/cv/include/
H A Dcv.hpp109 int get_src_type() const { return src_type; }
135 /* currently, work_type must be the same as src_type in case of non-separable filters */
136 int min_depth, src_type, dst_type, work_type; member in class:CvBaseImageFilter
/external/v8/src/arm/
H A Dassembler-arm.cc2150 // Encode vcvt.src_type.dst_type instruction.
2153 const VFPType src_type,
2157 ASSERT(src_type != dst_type);
2159 SplitRegCode(src_type, src_code, &Vm, &M);
2162 if (IsIntegerVFPType(dst_type) || IsIntegerVFPType(src_type)) {
2167 ASSERT(!IsIntegerVFPType(dst_type) || !IsIntegerVFPType(src_type));
2173 sz = IsDoubleVFPType(src_type) ? 0x1 : 0x0;
2176 ASSERT(IsIntegerVFPType(src_type));
2179 op = IsSignedVFPType(src_type) ? 0x1 : 0x0;
2189 int sz = IsDoubleVFPType(src_type)
[all...]

Completed in 412 milliseconds