/external/opencv3/modules/core/perf/opencl/ |
perf_arithm.cpp | 59 const Size srcSize = get<0>(params); 62 checkDeviceMaxMemoryAllocSize(srcSize, type); 64 UMat src(srcSize, CV_8UC(cn)), lut(1, 256, type); 66 UMat dst(srcSize, dstType); 83 const Size srcSize = get<0>(params); 86 checkDeviceMaxMemoryAllocSize(srcSize, type); 88 UMat src(srcSize, type), dst(srcSize, type); 105 const Size srcSize = get<0>(params); 108 checkDeviceMaxMemoryAllocSize(srcSize, type) [all...] |
perf_matop.cpp | 24 const Size srcSize = get<0>(params); 28 checkDeviceMaxMemoryAllocSize(srcSize, type); 30 UMat src(srcSize, type); 46 const Size srcSize = get<0>(params); 50 checkDeviceMaxMemoryAllocSize(srcSize, type); 52 UMat src(srcSize, type), mask(srcSize, CV_8UC1); 68 const Size srcSize = get<0>(params); 72 checkDeviceMaxMemoryAllocSize(srcSize, type); 73 checkDeviceMaxMemoryAllocSize(srcSize, dtype) [all...] |
perf_channels.cpp | 64 const Size srcSize = get<0>(params); 67 checkDeviceMaxMemoryAllocSize(srcSize, dtype); 69 UMat dst(srcSize, dtype); 73 i->create(srcSize, CV_MAKE_TYPE(depth, 1)); 92 const Size srcSize = get<0>(params); 97 checkDeviceMaxMemoryAllocSize(srcSize, type); 99 UMat src(srcSize, type); 100 std::vector<UMat> dst(cn, UMat(srcSize, CV_MAKE_TYPE(depth, 1))); 135 const Size srcSize = get<0>(params); 138 checkDeviceMaxMemoryAllocSize(srcSize, type) [all...] |
perf_dxt.cpp | 75 const Size srcSize = get<1>(params); 87 UMat src(srcSize, CV_MAKE_TYPE(CV_32F, in_cn)), dst(srcSize, CV_MAKE_TYPE(CV_32F, out_cn)); 105 const Size srcSize = get<0>(params); 108 UMat src1(srcSize, CV_32FC2), src2(srcSize, CV_32FC2), dst(srcSize, CV_32FC2);
|
perf_gemm.cpp | 67 const Size srcSize = get<0>(params); 71 UMat src1(srcSize, type), src2(srcSize, type), src3(srcSize, type), dst(srcSize, type);
|
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_filters.cpp | 66 const Size srcSize = get<0>(params); 70 checkDeviceMaxMemoryAllocSize(srcSize, type); 72 UMat src(srcSize, type), dst(srcSize, type); 90 const Size srcSize = get<0>(params), ksize = get<2>(params); 95 checkDeviceMaxMemoryAllocSize(srcSize, CV_MAKE_TYPE(ddepth, CV_MAT_CN(type))); 97 UMat src(srcSize, type), dst(srcSize, type); 113 const Size srcSize = get<0>(params); 117 checkDeviceMaxMemoryAllocSize(srcSize, type) [all...] |
perf_accumulate.cpp | 62 const Size srcSize = get<0>(params); 65 checkDeviceMaxMemoryAllocSize(srcSize, dstType); 67 UMat src(srcSize, srcType), dst(srcSize, dstType); 83 const Size srcSize = get<0>(params); 86 checkDeviceMaxMemoryAllocSize(srcSize, dstType); 88 UMat src(srcSize, srcType), dst(srcSize, dstType); 104 const Size srcSize = get<0>(params); 107 checkDeviceMaxMemoryAllocSize(srcSize, dstType) [all...] |
perf_3vs4.cpp | 32 const Size srcSize = get<0>(params); 36 checkDeviceMaxMemoryAllocSize(srcSize, type); 38 UMat src(srcSize, type), dst(srcSize, type); 51 dsts[i] = UMat(srcSize, depth); 52 srcs[i] = UMat(srcSize, depth); 68 UMat src4(srcSize, type4), dst4(srcSize, type4); 85 const Size srcSize = get<0>(params); 89 checkDeviceMaxMemoryAllocSize(srcSize, type) [all...] |
perf_imgproc.cpp | 61 const Size srcSize = GetParam(); 64 checkDeviceMaxMemoryAllocSize(srcSize, CV_8UC1); 66 UMat src(srcSize, CV_8UC1), dst(srcSize, CV_8UC1); 80 const Size srcSize = GetParam(); 88 checkDeviceMaxMemoryAllocSize(srcSize, CV_8UC1); 90 UMat src(srcSize, CV_8UC1), hist(256, 1, CV_32FC1); 104 const Size srcSize = GetParam(); 112 checkDeviceMaxMemoryAllocSize(srcSize, CV_8UC1); 114 UMat src(srcSize, CV_8UC1), hist(256, 1, CV_32FC1), dst(srcSize, CV_8UC1) [all...] |
perf_imgwarp.cpp | 73 const Size srcSize = get<0>(params); 77 checkDeviceMaxMemoryAllocSize(srcSize, type); 79 UMat src(srcSize, type), dst(srcSize, type); 82 OCL_TEST_CYCLE() cv::warpAffine(src, dst, M, srcSize, interpolation); 105 const Size srcSize = get<0>(params); 109 checkDeviceMaxMemoryAllocSize(srcSize, type); 111 UMat src(srcSize, type), dst(srcSize, type); 114 OCL_TEST_CYCLE() cv::warpPerspective(src, dst, M, srcSize, interpolation) [all...] |
perf_pyramid.cpp | 63 const Size srcSize = get<0>(params); 65 const Size dstSize((srcSize.height + 1) >> 1, (srcSize.width + 1) >> 1); 68 checkDeviceMaxMemoryAllocSize(srcSize, type); 71 UMat src(srcSize, type), dst(dstSize, type); 87 const Size srcSize = get<0>(params); 89 const Size dstSize(srcSize.height << 1, srcSize.width << 1); 92 checkDeviceMaxMemoryAllocSize(srcSize, type); 95 UMat src(srcSize, type), dst(dstSize, type) [all...] |
perf_blend.cpp | 62 const Size srcSize = get<0>(params); 66 checkDeviceMaxMemoryAllocSize(srcSize, srcType); 68 UMat src1(srcSize, srcType), src2(srcSize, srcType), dst(srcSize, srcType); 69 UMat weights1(srcSize, CV_32FC1), weights2(srcSize, CV_32FC1);
|
perf_matchTemplate.cpp | 55 const Size srcSize = get<0>(params), templSize(5, 5); 58 UMat src(srcSize, type), templ(templSize, type); 74 const Size srcSize = GetParam(), templSize(5, 5); 76 UMat src(srcSize, CV_8UC1), templ(templSize, CV_8UC1);
|
perf_houghLines.cpp | 34 const Size srcSize = get<0>(GetParam()); 39 UMat usrc(srcSize, CV_8UC1), lines(1, 1, CV_32FC2); 40 Mat src(srcSize, CV_8UC1);
|
/external/opencv3/modules/stitching/perf/opencl/ |
perf_warpers.cpp | 63 explicit WarperBase(int type, Size srcSize) 75 K.at<float>(0,0) = (float)srcSize.width; 76 K.at<float>(0,2) = (float)srcSize.width/2; 77 K.at<float>(1,1) = (float)srcSize.height; 78 K.at<float>(1,2) = (float)srcSize.height/2; 81 float scale = (float)srcSize.width; 106 static void prepareWarperSrc(InputOutputArray src, Size srcSize) 108 src.create(srcSize, CV_8UC1); 110 ellipse(src, Point(srcSize.width/2, srcSize.height/2), Size(srcSize.width/2, srcSize.height/2) [all...] |
/external/skia/src/effects/ |
SkPackBits.h | 20 static size_t ComputeMaxSize8(size_t srcSize); 25 @param srcSize Number of entries in src[] 31 static size_t Pack8(const uint8_t src[], size_t srcSize, uint8_t dst[], 37 @param srcSize Number of bytes of src to unpack 42 static int Unpack8(const uint8_t src[], size_t srcSize, uint8_t dst[],
|
SkPackBits.cpp | 9 size_t SkPackBits::ComputeMaxSize8(size_t srcSize) { 11 return ((srcSize + 127) >> 7) + srcSize; 37 size_t SkPackBits::Pack8(const uint8_t* SK_RESTRICT src, size_t srcSize, 39 if (dstSize < ComputeMaxSize8(srcSize)) { 44 const uint8_t* stop = src + srcSize; 81 int SkPackBits::Unpack8(const uint8_t* SK_RESTRICT src, size_t srcSize, 85 const uint8_t* stop = src + srcSize;
|
/external/skia/bench/ |
SkLinearBitmapPipelineBench.cpp | 18 SkISize srcSize, 29 fSrcSize = srcSize; 114 SkISize srcSize, 120 : CommonBitmapFPBenchmark(srcSize, colorProfile, m, useBilerp, xTile, yTile) { } 160 SkISize srcSize, 166 : CommonBitmapFPBenchmark(srcSize, colorProfile, m, useBilerp, xTile, yTile) { } 216 static SkISize srcSize = SkISize::Make(120, 100); 219 srcSize, kSRGB_SkColorProfileType, mI, false, 223 srcSize, kLinear_SkColorProfileType, mI, false, 227 srcSize, kLinear_SkColorProfileType, mI, false [all...] |
/external/opencv3/modules/features2d/perf/opencl/ |
perf_brute_force_matcher.cpp | 61 const Size srcSize = get<0>(params); 64 checkDeviceMaxMemoryAllocSize(srcSize, type); 67 UMat uquery(srcSize, type), utrain(srcSize, type); 82 const Size srcSize = get<0>(params); 85 checkDeviceMaxMemoryAllocSize(srcSize, type); 88 UMat uquery(srcSize, type), utrain(srcSize, type); 106 const Size srcSize = get<0>(params); 109 checkDeviceMaxMemoryAllocSize(srcSize, type) [all...] |
/external/opencv3/modules/imgproc/perf/ |
perf_distanceTransform.cpp | 52 Size srcSize = get<0>(GetParam()); 57 Mat src(srcSize, CV_8U); 58 Mat dst(srcSize, dstType); 81 Size srcSize = get<0>(GetParam()); 86 Mat src(srcSize, CV_8U); 87 Mat label(srcSize, CV_32S); 88 Mat dst(srcSize, CV_32F);
|
perf_moments.cpp | 27 const Size srcSize = get<0>(params); 32 Mat src(srcSize, srcDepth);
|
/external/vboot_reference/utility/include/ |
eficompress.h | 63 IN UINT32 SrcSize, 72 IN UINT32 SrcSize, 81 IN UINT32 SrcSize,
|
/external/skia/src/images/ |
SkImageDecoder_wbmp.cpp | 135 size_t srcSize = height * srcRB; 136 uint8_t* src = dst + decodedBitmap->getSize() - srcSize; 137 if (stream->read(src, srcSize) != srcSize) {
|
/external/lz4/lib/ |
lz4frame.c | 220 size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr) 232 if (srcSize <= maxBlockSize) 244 streamSize = LZ4F_compressBound(srcSize, &prefs); 259 size_t LZ4F_compressFrame(void* dstBuffer, size_t dstMaxSize, const void* srcBuffer, size_t srcSize, const LZ4F_preferences_t* preferencesPtr) 279 if (srcSize <= maxBlockSize) 289 if (srcSize <= LZ4F_getBlockSize(prefs.frameInfo.blockSizeID)) 294 if (dstMaxSize < LZ4F_compressFrameBound(srcSize, &prefs)) 302 errorCode = LZ4F_compressUpdate(&cctxI, dstPtr, dstMaxSize, srcBuffer, srcSize, &options); 433 /* LZ4F_compressBound() : gives the size of Dst buffer given a srcSize to handle worst case situations. 437 size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr [all...] |
/external/opencv3/modules/cudalegacy/test/ |
TestResize.cpp | 91 NcvSize32u srcSize(this->width, this->height); 117 srcSize, this->scaleFactor, 124 srcSize, this->scaleFactor, 141 srcSize, this->scaleFactor); 147 srcSize, this->scaleFactor);
|