HomeSort by relevance Sort by last modified time
    Searched full:_dst (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/
mbstring_s.h 19 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,_mbscat_s,unsigned char,,_Dst,size_t,,_DstSizeInBytes,const unsigned char*,,_Src)
20 _CRTIMP errno_t __cdecl _mbscat_s_l(unsigned char *_Dst,size_t _DstSizeInBytes,const unsigned char *_Src,_locale_t _Locale);
21 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,_mbscpy_s,unsigned char,,_Dst,size_t,,_DstSizeInBytes,const unsigned char*,,_Src)
22 _CRTIMP errno_t __cdecl _mbscpy_s_l(unsigned char *_Dst,size_t _DstSizeInBytes,const unsigned char *_Src,_locale_t _Locale);
25 _CRTIMP errno_t __cdecl _mbsnbcat_s(unsigned char *_Dst,size_t _DstSizeInBytes,const unsigned char *_Src,size_t _MaxCount);
26 _CRTIMP errno_t __cdecl _mbsnbcat_s_l(unsigned char *_Dst,size_t _DstSizeInBytes,const unsigned char *_Src,size_t _MaxCount,_locale_t _Locale);
27 _CRTIMP errno_t __cdecl _mbsnbcpy_s(unsigned char *_Dst,size_t _DstSizeInBytes,const unsigned char *_Src,size_t _MaxCount);
28 _CRTIMP errno_t __cdecl _mbsnbcpy_s_l(unsigned char *_Dst,size_t _DstSizeInBytes,const unsigned char *_Src,size_t _MaxCount,_locale_t _Locale);
29 _CRTIMP errno_t __cdecl _mbsnbset_s(unsigned char *_Dst,size_t _DstSizeInBytes,unsigned int _Ch,size_t _MaxCount);
30 _CRTIMP errno_t __cdecl _mbsnbset_s_l(unsigned char *_Dst,size_t _DstSizeInBytes,unsigned int _Ch,size_t _MaxCount,_locale_t _Locale)
    [all...]
string_s.h 17 _CRTIMP errno_t __cdecl _strset_s(char *_Dst,size_t _DstSize,int _Value);
26 _CRTIMP errno_t __cdecl strncat_s(char *_Dst,size_t _DstSizeInChars,const char *_Src,size_t _MaxCount);
27 _CRTIMP errno_t __cdecl _strncat_s_l(char *_Dst,size_t _DstSizeInChars,const char *_Src,size_t _MaxCount,_locale_t _Locale);
28 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,strcpy_s,char,,_Dst,size_t,,_SizeInBytes,const char *,,_Src)
29 _CRTIMP errno_t __cdecl strncpy_s(char *_Dst,size_t _DstSizeInChars,const char *_Src,size_t _MaxCount);
30 _CRTIMP errno_t __cdecl _strncpy_s_l(char *_Dst,size_t _DstSizeInChars,const char *_Src,size_t _MaxCount,_locale_t _Locale);
41 _CRTIMP errno_t __cdecl _wcsnset_s(wchar_t *_Dst,size_t _DstSizeInWords,wchar_t _Val,size_t _MaxCount);
48 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,wcscpy_s,wchar_t,,_Dst,size_t,,_nElem,const wchar_t *,,_Src)
49 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,wcscat_s,wchar_t,,_Dst,size_t,,_nElem,const wchar_t *,,_Src)
51 _CRTIMP errno_t __cdecl wcsncat_s(wchar_t *_Dst,size_t _DstSizeInChars,const wchar_t *_Src,size_t _MaxCount)
    [all...]
wchar_s.h 42 int __cdecl vswprintf_s(wchar_t *_Dst,size_t _SizeInWords,const wchar_t *_Format,va_list _ArgList);
43 __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_2(int, vswprintf_s, wchar_t, _Dst, const wchar_t*, _Format, va_list, _ArgList)
45 int __cdecl swprintf_s(wchar_t *_Dst,size_t _SizeInWords,const wchar_t *_Format,...);
46 __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_1_ARGLIST(int,swprintf_s,vswprintf_s,wchar_t,_Dst,const wchar_t*,_Format)
113 _CRTIMP errno_t __cdecl _wcsnset_s(wchar_t *_Dst,size_t _DstSizeInWords,wchar_t _Val,size_t _MaxCount);
120 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,wcscpy_s,wchar_t,,_Dst,size_t,,_nElem,const wchar_t *,,_Src)
121 __CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_0_2_(errno_t,wcscat_s,wchar_t,,_Dst,size_t,,_nElem,const wchar_t *,,_Src)
123 _CRTIMP errno_t __cdecl wcsncat_s(wchar_t *_Dst,size_t _DstSizeInChars,const wchar_t *_Src,size_t _MaxCount);
124 _CRTIMP errno_t __cdecl _wcsncat_s_l(wchar_t *_Dst,size_t _DstSizeInChars,const wchar_t *_Src,size_t _MaxCount,_locale_t _Locale);
125 _CRTIMP errno_t __cdecl wcsncpy_s(wchar_t *_Dst,size_t _DstSizeInChars,const wchar_t *_Src,size_t _MaxCount)
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
eigen.hpp 101 const Mat _dst(src.cols, src.rows, DataType<_Tp>::type,
103 if( src.type() == _dst.type() )
104 transpose(src, _dst);
107 src.convertTo(_dst, _dst.type());
108 transpose(_dst, _dst);
111 Mat(src.t()).convertTo(_dst, _dst.type());
115 const Mat _dst(src.rows, src.cols, DataType<_Tp>::type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
memory.h 24 _CRTIMP void *__cdecl _memccpy(void *_Dst,const void *_Src,int _Val,size_t _MaxCount);
29 void * __cdecl memcpy(void * __restrict__ _Dst,const void * __restrict__ _Src,size_t _Size) __MINGW_ATTRIB_DEPRECATED_SEC_WARN;
30 void * __cdecl mempcpy (void *_Dst, const void *_Src, size_t _Size);
31 void * __cdecl memset(void *_Dst,int _Val,size_t _Size);
34 void * __cdecl memccpy(void *_Dst,const void *_Src,int _Val,size_t _Size) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
wspiapi.h 17 #define _WSPIAPI_STRCPY_S(_Dst,_Size,_Src) strcpy((_Dst),(_Src))
18 #define _WSPIAPI_STRCAT_S(_Dst,_Size,_Src) strcat((_Dst),(_Src))
19 #define _WSPIAPI_STRNCPY_S(_Dst,_Size,_Src,_Count) strncpy((_Dst),(_Src),(_Count)); (_Dst)[(_Size) - 1] = 0
20 #define _WSPIAPI_SPRINTF_S_1(_Dst,_Size,_Format,_Arg1) sprintf((_Dst),(_Format),(_Arg1))
  /external/opencv3/modules/cudaarithm/src/cuda/
norm.cu 61 void normDiffInf(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream)
65 GpuMat_<int>& dst = (GpuMat_<int>&) _dst;
70 void normDiffL1(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream)
74 GpuMat_<int>& dst = (GpuMat_<int>&) _dst;
79 void normDiffL2(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream)
83 GpuMat_<double>& dst = (GpuMat_<double>&) _dst;
93 void cv::cuda::calcNormDiff(InputArray _src1, InputArray _src2, OutputArray _dst, int normType, Stream& stream)
95 typedef void (*func_t)(const GpuMat& _src1, const GpuMat& _src2, GpuMat& _dst, Stream& stream);
108 GpuMat dst = getOutputMat(_dst, 1, 1, normType == NORM_L2 ? CV_64FC1 : CV_32SC1, stream);
113 syncOutput(dst, _dst, stream)
    [all...]
math.cu 84 void cv::cuda::abs(InputArray _src, OutputArray _dst, Stream& stream)
102 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream);
106 syncOutput(dst, _dst, stream);
129 void cv::cuda::sqr(InputArray _src, OutputArray _dst, Stream& stream)
147 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream);
151 syncOutput(dst, _dst, stream);
166 void cv::cuda::sqrt(InputArray _src, OutputArray _dst, Stream& stream)
184 GpuMat dst = getOutputMat(_dst, src.size(), src.type(), stream);
188 syncOutput(dst, _dst, stream);
212 void cv::cuda::exp(InputArray _src, OutputArray _dst, Stream& stream
    [all...]
minmax.cu 62 void minMaxImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream)
65 GpuMat_<R>& dst = (GpuMat_<R>&) _dst;
87 void cv::cuda::findMinMax(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream)
89 typedef void (*func_t)(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream);
110 GpuMat dst = getOutputMat(_dst, 1, 2, dst_depth, stream);
115 syncOutput(dst, _dst, stream);
139 void findMaxAbs(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream);
146 void findMaxAbsImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream)
149 GpuMat_<R>& dst = (GpuMat_<R>&) _dst;
158 void cv::cuda::device::findMaxAbs(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream
    [all...]
sum.cu 62 void sumImpl(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream)
68 GpuMat_<res_type>& dst = (GpuMat_<res_type>&) _dst;
77 void sumAbsImpl(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream)
83 GpuMat_<res_type>& dst = (GpuMat_<res_type>&) _dst;
92 void sumSqrImpl(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream)
98 GpuMat_<res_type>& dst = (GpuMat_<res_type>&) _dst;
107 void cv::cuda::calcSum(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream)
109 typedef void (*func_t)(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream);
129 GpuMat dst = getOutputMat(_dst, 1, 1, CV_64FC(channels), stream);
134 syncOutput(dst, _dst, stream)
    [all...]
integral.cu 62 void cv::cuda::integral(InputArray _src, OutputArray _dst, Stream& stream)
73 GpuMat dst = getOutputMat(_dst, src.rows + 1, src.cols + 1, CV_32SC1, stream);
80 syncOutput(dst, _dst, stream);
86 void cv::cuda::sqrIntegral(InputArray _src, OutputArray _dst, Stream& stream)
97 GpuMat dst = getOutputMat(_dst, src.rows + 1, src.cols + 1, CV_64FC1, stream);
104 syncOutput(dst, _dst, stream);
normalize.cu 84 void normalizeMinMax(const GpuMat& _src, GpuMat& _dst, double a, double b, const GpuMat& mask, Stream& stream)
87 GpuMat_<R>& dst = (GpuMat_<R>&)_dst;
139 void normalizeNorm(const GpuMat& _src, GpuMat& _dst, double a, int normType, const GpuMat& mask, Stream& stream)
142 GpuMat_<R>& dst = (GpuMat_<R>&)_dst;
217 void cv::cuda::normalize(InputArray _src, OutputArray _dst, double a, double b, int normType, int dtype, InputArray _mask, Stream& stream)
219 typedef void (*func_minmax_t)(const GpuMat& _src, GpuMat& _dst, double a, double b, const GpuMat& mask, Stream& stream);
220 typedef void (*func_norm_t)(const GpuMat& _src, GpuMat& _dst, double a, int normType, const GpuMat& mask, Stream& stream);
260 _dst.create(src.size(), tmp_depth);
261 dst = getOutputMat(_dst, src.size(), tmp_depth, stream);
282 syncOutput(dst, _dst, stream)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 315 template <class _ArePtrs, class _Src, class _Dst>
317 { typedef typename _IsCVConvertible<_Src, _Dst>::_Ret _Ret; };
319 template <class _Src, class _Dst>
320 struct _IsCVConvertibleIf<__false_type, _Src, _Dst>
326 template <class _Src, class _Dst>
328 { typedef typename _IsCVConvertible<_Src, _Dst>::_Ret _Ret; };
333 template <class _Src, class _Dst>
338 template <class _ArePtrs, class _Src, class _Dst>
340 typedef typename _IsCVConvertibleIfAux<_ArePtrs>::_STLP_TEMPLATE _In<_Src, _Dst>::_Ret _Ret;
346 template <class _ArePtrs, class _Src, class _Dst>
    [all...]
type_manips.h 169 template <class _Src, class _Dst>
172 static _Dst* __null_dst();
179 template <class _Src, class _Dst>
181 typedef typename _AreSameTypes<_Src, _Dst>::_Ret _Tr1;
182 typedef typename _IsUnQual<_Dst>::_Ret _Tr2;
188 template <class _Src, class _Dst>
197 * from the _Src type to the _Dst type is right considering qualifiers. If _Src and
198 * _Dst types are the same unqualified types _Ret will be false if:
200 * - _Dst is const qualified
202 template <class _Src, class _Dst>
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 315 template <class _ArePtrs, class _Src, class _Dst>
317 { typedef typename _IsCVConvertible<_Src, _Dst>::_Ret _Ret; };
319 template <class _Src, class _Dst>
320 struct _IsCVConvertibleIf<__false_type, _Src, _Dst>
326 template <class _Src, class _Dst>
328 { typedef typename _IsCVConvertible<_Src, _Dst>::_Ret _Ret; };
333 template <class _Src, class _Dst>
338 template <class _ArePtrs, class _Src, class _Dst>
340 typedef typename _IsCVConvertibleIfAux<_ArePtrs>::_STLP_TEMPLATE _In<_Src, _Dst>::_Ret _Ret;
346 template <class _ArePtrs, class _Src, class _Dst>
    [all...]
type_manips.h 169 template <class _Src, class _Dst>
172 static _Dst* __null_dst();
179 template <class _Src, class _Dst>
181 typedef typename _AreSameTypes<_Src, _Dst>::_Ret _Tr1;
182 typedef typename _IsUnQual<_Dst>::_Ret _Tr2;
188 template <class _Src, class _Dst>
197 * from the _Src type to the _Dst type is right considering qualifiers. If _Src and
198 * _Dst types are the same unqualified types _Ret will be false if:
200 * - _Dst is const qualified
202 template <class _Src, class _Dst>
    [all...]
  /external/opencv3/modules/cudaimgproc/src/
color.cpp 82 typedef void (*gpu_func_t)(const GpuMat& _src, GpuMat& _dst, Stream& stream);
84 void BGR_to_RGB(InputArray _src, OutputArray _dst, int, Stream& stream)
94 _dst.create(src.size(), CV_MAKE_TYPE(src.depth(), 3));
95 GpuMat dst = _dst.getGpuMat();
100 void BGR_to_BGRA(InputArray _src, OutputArray _dst, int, Stream& stream)
110 _dst.create(src.size(), CV_MAKE_TYPE(src.depth(), 4));
111 GpuMat dst = _dst.getGpuMat();
116 void BGR_to_RGBA(InputArray _src, OutputArray _dst, int, Stream& stream)
126 _dst.create(src.size(), CV_MAKE_TYPE(src.depth(), 4));
127 GpuMat dst = _dst.getGpuMat()
    [all...]
  /external/opencv3/modules/photo/src/
seamless_cloning.cpp 50 void cv::seamlessClone(InputArray _src, InputArray _dst, InputArray _mask, Point p, OutputArray _blend, int flags)
53 const Mat dest = _dst.getMat();
117 void cv::colorChange(InputArray _src, InputArray _mask, OutputArray _dst, float r, float g, float b)
121 _dst.create(src.size(), src.type());
122 Mat blend = _dst.getMat();
143 void cv::illuminationChange(InputArray _src, InputArray _mask, OutputArray _dst, float a, float b)
148 _dst.create(src.size(), src.type());
149 Mat blend = _dst.getMat();
169 void cv::textureFlattening(InputArray _src, InputArray _mask, OutputArray _dst,
175 _dst.create(src.size(), src.type())
    [all...]
npr.cpp 52 void cv::edgePreservingFilter(InputArray _src, OutputArray _dst, int flags, float sigma_s, float sigma_r)
55 _dst.create(I.size(), CV_8UC3);
56 Mat dst = _dst.getMat();
74 void cv::detailEnhance(InputArray _src, OutputArray _dst, float sigma_s, float sigma_r)
77 _dst.create(I.size(), CV_8UC3);
78 Mat dst = _dst.getMat();
143 void cv::stylization(InputArray _src, OutputArray _dst, float sigma_s, float sigma_r)
146 _dst.create(I.size(), CV_8UC3);
147 Mat dst = _dst.getMat();
  /external/opencv3/modules/core/src/cuda/
gpu_mat.cu 197 void cv::cuda::GpuMat::download(OutputArray _dst) const
201 _dst.create(size(), type());
202 Mat dst = _dst.getMat();
207 void cv::cuda::GpuMat::download(OutputArray _dst, Stream& _stream) const
211 _dst.create(size(), type());
212 Mat dst = _dst.getMat();
221 void cv::cuda::GpuMat::copyTo(OutputArray _dst) const
225 _dst.create(size(), type());
226 GpuMat dst = _dst.getGpuMat();
231 void cv::cuda::GpuMat::copyTo(OutputArray _dst, Stream& _stream) cons
    [all...]
  /external/opencv3/modules/core/src/
cuda_gpu_mat.cpp 369 GpuMat cv::cuda::getOutputMat(OutputArray _dst, int rows, int cols, int type, Stream& stream)
374 (void) _dst;
381 if (_dst.kind() == _InputArray::CUDA_GPU_MAT)
383 _dst.create(rows, cols, type);
384 dst = _dst.getGpuMat();
396 void cv::cuda::syncOutput(const GpuMat& dst, OutputArray _dst, Stream& stream)
400 (void) _dst;
404 if (_dst.kind() != _InputArray::CUDA_GPU_MAT)
407 dst.download(_dst, stream);
409 dst.download(_dst);
    [all...]
copy.cpp 56 copyMask_(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size)
58 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep )
61 T* dst = (T*)_dst;
83 copyMask_<uchar>(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size)
88 if (ippiCopy_8u_C1MR(_src, (int)sstep, _dst, (int)dstep, ippiSize(size), mask, (int)mstep) >= 0)
97 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep )
100 uchar* dst = (uchar*)_dst;
133 copyMask_<ushort>(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dstep, Size size)
138 if (ippiCopy_16u_C1MR((const Ipp16u *)_src, (int)sstep, (Ipp16u *)_dst, (int)dstep, ippiSize(size), mask, (int)mstep) >= 0)
147 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep
    [all...]
  /external/opencv3/modules/imgproc/src/
blend.cpp 57 const Mat & _weights2, Mat & _dst) :
58 src1(&_src1), src2(&_src2), weights1(&_weights1), weights2(&_weights2), dst(&_dst)
96 static bool ocl_blendLinear( InputArray _src1, InputArray _src2, InputArray _weights1, InputArray _weights2, OutputArray _dst )
108 weights2 = _weights2.getUMat(), dst = _dst.getUMat();
122 void cv::blendLinear( InputArray _src1, InputArray _src2, InputArray _weights1, InputArray _weights2, OutputArray _dst )
131 _dst.create(size, type);
133 CV_OCL_RUN(_dst.isUMat(),
134 ocl_blendLinear(_src1, _src2, _weights1, _weights2, _dst))
137 weights2 = _weights2.getMat(), dst = _dst.getMat();
  /external/opencv3/modules/imgproc/test/
test_thresh.cpp 122 static void test_threshold( const Mat& _src, Mat& _dst,
157 uchar* dst = _dst.ptr<uchar>(i);
164 short* dst = _dst.ptr<short>(i);
171 float* dst = _dst.ptr<float>(i);
183 uchar* dst = _dst.ptr<uchar>(i);
190 short* dst = _dst.ptr<short>(i);
197 float* dst = _dst.ptr<float>(i);
209 uchar* dst = _dst.ptr<uchar>(i);
219 short* dst = _dst.ptr<short>(i);
229 float* dst = _dst.ptr<float>(i)
    [all...]
  /external/autotest/client/site_tests/hardware_UsbBasicFileOperations/
hardware_UsbBasicFileOperations.py 14 _src, _dst = None, None
27 self._dst = autotemp.tempfile(unique_id='autotest',
65 utils.force_copy(self._src.name, self._dst.name)
71 if src_md5 != storage_mod.checksum_file(self._dst.name):
104 utils.force_copy(self._src.name, self._dst.name)
108 dst_md5 = modify_file(self._dst.name)
121 if self._dst:
122 self._dst.clean()

Completed in 1718 milliseconds

1 2 3 4 5 6 7 8