HomeSort by relevance Sort by last modified time
    Searched refs:dstType (Results 1 - 25 of 49) sorted by null

1 2

  /external/opencv3/modules/imgproc/perf/opencl/
perf_accumulate.cpp 63 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn);
65 checkDeviceMaxMemoryAllocSize(srcSize, dstType);
67 UMat src(srcSize, srcType), dst(srcSize, dstType);
84 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn);
86 checkDeviceMaxMemoryAllocSize(srcSize, dstType);
88 UMat src(srcSize, srcType), dst(srcSize, dstType);
105 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn);
107 checkDeviceMaxMemoryAllocSize(srcSize, dstType);
109 UMat src1(srcSize, srcType), src2(srcSize, srcType), dst(srcSize, dstType);
126 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn)
    [all...]
  /external/opencv3/modules/cudafilters/include/opencv2/
cudafilters.hpp 93 @param dstType Output image type. Only the same type as src is supported for now.
102 CV_EXPORTS Ptr<Filter> createBoxFilter(int srcType, int dstType, Size ksize, Point anchor = Point(-1,-1),
111 @param dstType Output image type. Only the same type as src is supported for now.
120 CV_EXPORTS Ptr<Filter> createLinearFilter(int srcType, int dstType, InputArray kernel, Point anchor = Point(-1,-1),
129 @param dstType Output image type. Only the same type as src is supported for now.
139 CV_EXPORTS Ptr<Filter> createLaplacianFilter(int srcType, int dstType, int ksize = 1, double scale = 1,
148 @param dstType Destination array type.
159 CV_EXPORTS Ptr<Filter> createSeparableLinearFilter(int srcType, int dstType, InputArray rowKernel, InputArray columnKernel,
168 @param dstType Destination array type.
180 CV_EXPORTS Ptr<Filter> createDerivFilter(int srcType, int dstType, int dx, int dy
    [all...]
  /external/mesa3d/src/mesa/main/
pack.h 55 GLenum dstFormat, GLenum dstType, GLvoid *dstAddr,
94 GLenum dstType, GLvoid *dest,
102 GLenum dstType, GLvoid *dest, const GLuint *source,
109 GLenum dstType, GLvoid *dest,
116 GLenum dstType, GLvoid *dest, const GLubyte *source,
122 GLenum dstType, GLvoid *dest, GLuint depthMax,
128 GLenum dstType, const GLfloat *depthSpan,
134 GLenum dstType, GLuint *dest,
149 GLenum dstFormat, GLenum dstType,
155 GLenum dstFormat, GLenum dstType,
    [all...]
pack.c 521 GLenum dstFormat, GLenum dstType)
526 _mesa_lookup_enum_by_nr(dstType),
532 GLenum dstFormat, GLenum dstType,
537 switch(dstType) {
565 _pack_rgba_span_from_uints_problem(ctx, dstFormat, dstType);
577 _pack_rgba_span_from_uints_problem(ctx, dstFormat, dstType);
589 _pack_rgba_span_from_uints_problem(ctx, dstFormat, dstType);
601 _pack_rgba_span_from_uints_problem(ctx, dstFormat, dstType);
632 _pack_rgba_span_from_uints_problem(ctx, dstFormat, dstType);
663 _pack_rgba_span_from_uints_problem(ctx, dstFormat, dstType);
    [all...]
image.c 461 GLenum dstType, GLvoid *dst,
471 ASSERT(srcType != dstType);
475 if (dstType == GL_UNSIGNED_SHORT) {
494 ASSERT(dstType == GL_FLOAT);
508 if (dstType == GL_UNSIGNED_BYTE) {
527 ASSERT(dstType == GL_FLOAT);
541 if (dstType == GL_UNSIGNED_BYTE) {
556 ASSERT(dstType == GL_UNSIGNED_SHORT);
image.h 99 GLenum dstType, GLvoid *dst,
  /art/runtime/
reflection-inl.h 32 Primitive::Type srcType, Primitive::Type dstType,
34 DCHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot);
35 if (LIKELY(srcType == dstType)) {
39 switch (dstType) {
94 PrettyDescriptor(dstType).c_str()).c_str());
98 PrettyDescriptor(dstType).c_str()).c_str());
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 217 int srcType, int dstType, int bufType,
227 int srcType, int dstType, int bufType,
251 int dstType;
291 Ptr<BaseColumnFilter> getLinearColumnFilter(int bufType, int dstType,
297 Ptr<BaseFilter> getLinearFilter(int srcType, int dstType,
303 Ptr<FilterEngine> createSeparableLinearFilter(int srcType, int dstType,
311 Ptr<FilterEngine> createLinearFilter(int srcType, int dstType,
322 Ptr<FilterEngine> createDerivFilter( int srcType, int dstType,
331 Ptr<BaseColumnFilter> getColumnSumFilter( int sumType, int dstType,
335 Ptr<FilterEngine> createBoxFilter( int srcType, int dstType, Size ksize
    [all...]
  /frameworks/av/services/audiopolicy/utilities/convert/
convert.h 47 * @tparam dstType destination type
53 template <typename srcType, typename dstType>
54 static inline bool convertTo(const srcType &input, dstType &result);
160 template <typename srcType, typename dstType>
163 template <typename dstType>
164 class Converter<std::string, dstType>
167 static inline bool run(const std::string &str, dstType &result)
169 return fromString<dstType>(str, result);
213 template <typename srcType, typename dstType>
214 static inline bool convertTo(const srcType &input, dstType &result
    [all...]
  /external/opencv3/modules/core/test/ocl/
test_matrix_operation.cpp 59 int src_depth, cn, dstType;
69 dstType = CV_MAKE_TYPE(GET_PARAM(1), cn);
81 randomSubMat(dst, dst_roi, roiSize, dstBorder, dstType, 5, 16);
96 OCL_OFF(src_roi.convertTo(dst_roi, dstType, alpha, beta));
97 OCL_ON(usrc_roi.convertTo(udst_roi, dstType, alpha, beta));
99 double eps = CV_MAT_DEPTH(dstType) >= CV_32F ? 2e-4 : 1;
  /external/opencv3/modules/cudafilters/src/
filtering.cpp 99 NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal);
116 NPPBoxFilter::NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal) :
122 CV_Assert( dstType == srcType );
165 Ptr<Filter> cv::cuda::createBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal)
167 if (dstType < 0)
168 dstType = srcType;
170 dstType = CV_MAKE_TYPE(CV_MAT_DEPTH(dstType), CV_MAT_CN(srcType));
172 return makePtr<NPPBoxFilter>(srcType, dstType, ksize, anchor, borderMode, borderVal);
191 LinearFilter(int srcType, int dstType, InputArray kernel, Point anchor, int borderMode, Scalar borderVal)
    [all...]
  /frameworks/base/tools/aapt2/link/
TableMerger.cpp 142 ResourceTableType* dstType = mMasterPackage->findOrCreateType(srcType->type);
144 if (dstType->symbolStatus.state == SymbolState::kPublic && dstType->id && srcType->id
145 && dstType->id.value() == srcType->id.value()) {
155 dstType->symbolStatus = std::move(srcType->symbolStatus);
156 dstType->id = srcType->id;
165 dstEntry = dstType->findOrCreateEntry(mangledName);
167 dstEntry = dstType->findEntry(mangledName);
171 dstEntry = dstType->findOrCreateEntry(srcEntry->name);
173 dstEntry = dstType->findEntry(srcEntry->name)
    [all...]
  /frameworks/av/media/libmedia/
ICrypto.cpp 98 DestinationType dstType,
108 data.writeInt32((int32_t)dstType);
139 if (dstType == kDestinationTypeNativeHandle) {
141 } else if (dstType == kDestinationTypeOpaqueHandle) {
144 dstType = kDestinationTypeVmPointer;
155 if (dstType == kDestinationTypeVmPointer && result >= 0) {
283 DestinationType dstType = (DestinationType)data.readInt32();
315 if (dstType == kDestinationTypeNativeHandle) {
318 } else if (dstType == kDestinationTypeOpaqueHandle) {
322 dstType = kDestinationTypeVmPointer
    [all...]
  /external/opencv3/modules/imgproc/perf/
perf_distanceTransform.cpp 35 CV_ENUM(DstType, CV_8U, CV_32F)
38 typedef std::tr1::tuple<Size, DistanceType, MaskSize, DstType> SrcSize_DistType_MaskSize_DstType;
48 DstType::all()
55 int dstType = get<3>(GetParam());
58 Mat dst(srcSize, dstType);
65 TEST_CYCLE() distanceTransform( src, dst, distanceType, maskSize, dstType);
  /external/opencv3/modules/core/test/
test_mat.cpp 15 int checkOp( const Mat& src, int dstType, int opType, const Mat& opRes, int dim );
16 int checkCase( int srcType, int dstType, int dim, Size sz );
85 int Core_ReduceTest::checkOp( const Mat& src, int dstType, int opType, const Mat& opRes, int dim )
91 if( srcType == CV_8U && (dstType == CV_32S || dstType == CV_32F || dstType == CV_64F) )
93 if( srcType == CV_16U && (dstType == CV_32F || dstType == CV_64F) )
95 if( srcType == CV_16S && (dstType == CV_32F || dstType == CV_64F)
    [all...]
  /frameworks/av/include/media/
Crypto.h 53 DestinationType dstType,
ICrypto.h 56 DestinationType dstType,
  /external/skia/include/core/
SkShader.h 103 enum DstType {
109 DstType dstType)
113 , fPreferredDstType(dstType) {}
118 const DstType fPreferredDstType; // the "natural" client dest type
  /art/runtime/mirror/
object_array-inl.h 238 std::string dstType(PrettyTypeOf(this));
243 src_pos + i, actualSrcType.c_str(), dstType.c_str());
246 src_pos + i, actualSrcType.c_str(), dstType.c_str());
  /external/opencv3/modules/imgproc/test/ocl/
test_color.cpp 74 const int dstType = CV_MAKE_TYPE(depth, channelsOut);
81 randomSubMat(dst, dst_roi, roiSize, dstBorder, dstType, 5, 16);
331 const int dstType = CV_MAKE_TYPE(depth, channelsOut);
340 randomSubMat(dst, dst_roi, roiSize, dstBorder, dstType, 5, 16);
373 const int dstType = CV_MAKE_TYPE(depth, channelsOut);
383 randomSubMat(dst, dst_roi, dstRoiSize, dstBorder, dstType, 5, 16);
407 const int dstType = CV_MAKE_TYPE(depth, channelsOut);
416 randomSubMat(dst, dst_roi, roiSize, dstBorder, dstType, 5, 16);
  /frameworks/av/drm/libmediadrm/
Crypto.cpp 237 DestinationType dstType,
259 dstType != kDestinationTypeVmPointer,
  /art/test/064-field-access/src/
Main.java 486 private static boolean compatibleTypes(char srcType, char dstType) {
487 switch (dstType) {
491 return srcType == dstType;
508 throw new Error("Unexpected type char " + dstType);
  /art/runtime/native/
java_lang_System.cc 138 std::string dstType(PrettyTypeOf(dstArray));
141 srcType.c_str(), dstType.c_str());
  /external/opencv3/modules/cudalegacy/src/
NCV.cpp 183 NCVStatus memSegCopyHelper(void *dst, NCVMemoryType dstType, const void *src, NCVMemoryType srcType, size_t sz, cudaStream_t cuStream)
186 switch (dstType)
250 NCVStatus memSegCopyHelper2D(void *dst, Ncv32u dstPitch, NCVMemoryType dstType,
255 switch (dstType)
  /external/opencv3/modules/features2d/src/
matchers.cpp 696 static bool ocl_match(InputArray query, InputArray _train, std::vector< std::vector<DMatch> > &matches, int dstType)
699 if (!ocl_matchSingle(query, _train, trainIdx, distance, dstType))
706 static bool ocl_knnMatch(InputArray query, InputArray _train, std::vector< std::vector<DMatch> > &matches, int k, int dstType, bool compactResult)
711 if (!ocl_knnMatchSingle(query, _train, trainIdx, distance, dstType))
855 float maxDistance, int dstType, bool compactResult)
858 if (!ocl_radiusMatchSingle(query, _train, trainIdx, distance, nMatches, maxDistance, dstType))
    [all...]

Completed in 1118 milliseconds

1 2