/external/vboot_reference/utility/ |
efidecompress.c | 679 IN UINT32 SrcSize, 692 SrcSize - The size of source buffer 708 if (SrcSize < 8) { 719 IN UINT32 SrcSize, 735 SrcSize - The size of source buffer 769 if (SrcSize < 8) { 783 if (SrcSize < CompSize + 8) { 846 IN UINT32 SrcSize, 860 SrcSize - The size of source buffer 873 SrcSize, [all...] |
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_color.cpp | 100 const Size srcSize = get<0>(params); 105 UMat src(srcSize, CV_8UC(scn)), dst(srcSize, CV_8UC(scn));
|
perf_moments.cpp | 64 const Size srcSize = get<0>(params); 68 UMat src(srcSize, CV_8UC1);
|
/external/lz4/lib/ |
lz4frame.h | 88 size_t LZ4F_compressFrameBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr); 90 size_t LZ4F_compressFrame(void* dstBuffer, size_t dstMaxSize, const void* srcBuffer, size_t srcSize, const LZ4F_preferences_t* preferencesPtr); 139 size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* preferencesPtr); 141 * Provides the minimum size of Dst buffer given srcSize to handle worst case situations. 146 size_t LZ4F_compressUpdate(LZ4F_compressionContext_t compressionContext, void* dstBuffer, size_t dstMaxSize, const void* srcBuffer, size_t srcSize, const LZ4F_compressOptions_t* compressOptionsPtr); 217 * The function result is an hint of how many srcSize bytes LZ4F_decompress() expects for next call, 240 * The function result is an hint of how many srcSize bytes LZ4F_decompress() expects for next call. 243 * This is just a hint, you can always provide any srcSize you want.
|
/external/lzma/C/ |
MtCoder.h | 70 const Byte *src, size_t srcSize, int finished);
|
Lzma2Enc.c | 327 const Byte *src, size_t srcSize, int finished)
338 if (srcSize != 0)
342 RINOK(LzmaEnc_MemPrepare(p->enc, src, srcSize, LZMA2_KEEP_WINDOW_SIZE,
345 while (p->srcPos < srcSize)
|
/external/opencv3/modules/imgproc/src/opencl/ |
filterSepCol.cl | 54 #define SRCSIZE (int)sizeof(srcT) 59 #define SRCSIZE (int)sizeof(srcT1)*3 75 int start_addr = mad24(y, src_step, x * SRCSIZE); 76 int end_addr = mad24(src_whole_rows - 1, src_step, src_whole_cols * SRCSIZE);
|
boxFilter.cl | 53 #define SRCSIZE (int)sizeof(ST) 58 #define SRCSIZE (int)sizeof(ST1)*cn 138 int src_index = mad24(pos.y, src_step, pos.x * SRCSIZE); 158 int src_index = mad24(selected_row, src_step, selected_col * SRCSIZE);
|
filter2D.cl | 142 #define SRCSIZE (int)sizeof(srcT) 147 #define SRCSIZE (int)sizeof(srcT1) * cn 199 data[sy + sy_index] = convertToWT(loadpix(srcptr + mad24(srcY, src_step, srcX * SRCSIZE))); 217 data[sy + sy_index] = convertToWT(loadpix(srcptr + mad24(tempY, src_step, srcX * SRCSIZE)));
|
laplacian5.cl | 79 #define SRCSIZE (int)sizeof(srcT) 84 #define SRCSIZE (int)sizeof(srcT1)*3 88 #define SRC(_x,_y) convertToWT(loadpix(Src + mad24(_y, src_step, SRCSIZE * _x)))
|
filter2DSmall.cl | 163 #define SRCSIZE (int)sizeof(srcT) 168 #define SRCSIZE (int)sizeof(srcT1) * cn 207 coord.x * SRCSIZE; 218 pos.x * SRCSIZE; 254 pos.x * SRCSIZE);
|
filterSmall.cl | 128 #define SRCSIZE (int)sizeof(srcT) 133 #define SRCSIZE (int)sizeof(srcT1) * cn 174 (srcptr + mad24(pos.y, srcstep, pos.x * SRCSIZE)); 315 __global const uchar* ptr = srcptr + mad24(selected_row, srcstep, selected_col * SRCSIZE); 325 __global const uchar * ptr = srcptr + mad24(pos.y, srcstep, pos.x * SRCSIZE); 404 //for this type of operations SRCSIZE == DSTSIZE 405 int mat_index = mad24(y, mat_step, mad24(x, SRCSIZE, mat_offset));
|
filterSepRow.cl | 132 #define SRCSIZE (int)sizeof(srcT) 137 #define SRCSIZE (int)sizeof(srcT1)*3 305 int start_addr = mad24(start_y, src_step, start_x * SRCSIZE); 312 int end_addr = mad24(src_whole_rows - 1, src_step, src_whole_cols * SRCSIZE); 317 int current_addr = mad24(i, LSIZE0 * SRCSIZE, start_addr); 352 index[i] = mad24(s_y, src_step, s_x * SRCSIZE);
|
filterSep_singlePass.cl | 80 #define SRCSIZE (int)sizeof(srcT) 85 #define SRCSIZE (int)sizeof(srcT1)*3 89 #define SRC(_x,_y) convertToWT(loadpix(Src + mad24(_y, src_step, SRCSIZE * _x)))
|
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/ |
NPP_staging.hpp | 134 * \param srcSize [IN] Frame size (both frames must be of the same size) 141 NCVStatus nppiStGetInterpolationBufferSize(NcvSize32u srcSize, 162 * \param srcSize [IN] Source image size 178 NcvSize32u srcSize, 196 * \param srcSize [IN] Source image size 212 NcvSize32u srcSize, 227 * \param srcSize [IN] Source image size 234 NCVStatus nppiStVectorWarpGetBufferSize(NcvSize32u srcSize, 249 * \param srcSize [IN] Source image size 261 NcvSize32u srcSize, [all...] |
/external/llvm/test/Transforms/MemCpyOpt/ |
memset-memcpy-redundant-memset.ll | 35 ; CHECK-DAG: [[SRCSIZE:%[0-9]+]] = zext i32 %src_size to i128 36 ; CHECK-DAG: [[DST:%[0-9]+]] = getelementptr i8, i8* %dst, i128 [[SRCSIZE]] 37 ; CHECK-DAG: [[ULE:%[0-9]+]] = icmp ule i128 %dst_size, [[SRCSIZE]] 38 ; CHECK-DAG: [[SIZEDIFF:%[0-9]+]] = sub i128 %dst_size, [[SRCSIZE]] 65 ; CHECK-DAG: [[SRCSIZE:%[0-9]+]] = zext i32 %src_size to i64 66 ; CHECK-DAG: [[DST:%[0-9]+]] = getelementptr i8, i8* %dst, i64 [[SRCSIZE]] 67 ; CHECK-DAG: [[ULE:%[0-9]+]] = icmp ule i64 %dst_size, [[SRCSIZE]] 68 ; CHECK-DAG: [[SIZEDIFF:%[0-9]+]] = sub i64 %dst_size, [[SRCSIZE]]
|
/external/opencv3/modules/video/perf/opencl/ |
perf_optflow_dualTVL1.cpp | 75 const Size srcSize = frame0.size(); 86 UMat uFlow(srcSize, CV_32FC2);
|
perf_optflow_farneback.cpp | 80 const Size srcSize = frame0.size(); 97 UMat uFlow(srcSize, CV_32FC2);
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
NPP_staging.cu | [all...] |
NCVBroxOpticalFlow.cu | [all...] |
/external/deqp/modules/gles3/functional/ |
es3fBufferCopyTests.cpp | 54 int srcSize, 65 , m_srcSize (srcSize) 285 int srcSize; 292 // srcSize dstSize srcOffs dstOffs copySize 310 srcTarget, cases[ndx].srcSize, hint,
|
/external/llvm/lib/Transforms/Scalar/ |
MemCpyOptimizer.cpp | 613 uint64_t srcSize = DL.getTypeAllocSize(srcAlloca->getAllocatedType()) * 616 if (cpyLen < srcSize) 619 // Check that accessing the first srcSize bytes of dest will not cause a 623 // The destination is an alloca. Check it is larger than srcSize. 631 if (destSize < srcSize) 634 if (A->getDereferenceableBytes() < srcSize) { 649 if (destSize < srcSize) 715 ModRefInfo MR = AA.getModRefInfo(C, cpyDest, srcSize); 718 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT); [all...] |
/external/deqp/modules/glshared/ |
glsTextureTestUtil.cpp | 235 static float computeNonProjectedTriLod (LodMode mode, const tcu::IVec2& dstSize, deInt32 srcSize, const tcu::Vec3& sq) 237 float dux = (sq.z() - sq.x()) * (float)srcSize; 238 float duy = (sq.y() - sq.x()) * (float)srcSize; 273 static float computeNonProjectedTriLod (LodMode mode, const tcu::IVec2& dstSize, const tcu::IVec2& srcSize, const tcu::Vec3& sq, const tcu::Vec3& tq) 275 float dux = (sq.z() - sq.x()) * (float)srcSize.x(); 276 float duy = (sq.y() - sq.x()) * (float)srcSize.x(); 277 float dvx = (tq.z() - tq.x()) * (float)srcSize.y(); 278 float dvy = (tq.y() - tq.x()) * (float)srcSize.y(); 314 static float computeNonProjectedTriLod (LodMode mode, const tcu::IVec2& dstSize, const tcu::IVec3& srcSize, const tcu::Vec3& sq, const tcu::Vec3& tq, const tcu::Vec3& rq) 316 float dux = (sq.z() - sq.x()) * (float)srcSize.x() [all...] |
/external/lz4/programs/ |
frametest.c | 422 size_t srcSize = (FUZ_rand(&randState) & ((1<<nbBits)-1)) + 1; 423 size_t srcStart = FUZ_rand(&randState) % (srcDataLength - srcSize); 437 crcOrig = XXH64((BYTE*)srcBuffer+srcStart, (U32)srcSize, 1); 441 cSize = LZ4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(srcSize, prefsPtr), (char*)srcBuffer + srcStart, srcSize, prefsPtr); 447 const BYTE* const iend = ip + srcSize; 450 unsigned maxBits = FUZ_highbit((U32)srcSize); 504 if (result == (size_t)-ERROR_checksum_invalid) locateBuffDiff((BYTE*)srcBuffer+srcStart, decodedBuffer, srcSize, nonContiguousDst); 514 if (crcDecoded != crcOrig) locateBuffDiff((BYTE*)srcBuffer+srcStart, decodedBuffer, srcSize, nonContiguousDst);
|
/frameworks/av/media/libstagefright/include/ |
SoftVideoEncoderOMXComponent.h | 66 uint8_t *dst, size_t dstSize, const uint8_t *src, size_t srcSize,
|