Searched defs:src_size (Results 1 - 25 of 48) sorted by relevance

12

/external/libmicrohttpd/src/microspdy/
H A Dcompression.c252 size_t src_size,
268 if(src_size > SPDYF_ZLIB_CHUNK)
271 src_size -= SPDYF_ZLIB_CHUNK;
279 strm->avail_in = src_size;
352 size_t src_size,
366 if(src_size > SPDYF_ZLIB_CHUNK)
369 src_size -= SPDYF_ZLIB_CHUNK;
373 strm->avail_in = src_size;
374 src_size = 0;
250 SPDYF_zlib_deflate(z_stream *strm, const void *src, size_t src_size, size_t *data_used, void **dest, size_t *dest_size) argument
350 SPDYF_zlib_inflate(z_stream *strm, const void *src, size_t src_size, void **dest, size_t *dest_size) argument
/external/libmicrohttpd/src/examples/
H A Dmhd2spdy_structures.c146 copy_buffer(const void *src, size_t src_size, void **dst, size_t *dst_size) argument
148 if(0 == src_size)
152 *dst = malloc(src_size);
154 *dst = realloc(*dst, src_size + *dst_size);
158 memcpy(*dst + *dst_size, src, src_size);
159 *dst_size += src_size;
/external/opencv3/modules/stitching/perf/opencl/
H A Dperf_warpers.cpp86 Rect buildMaps(Size src_size, OutputArray xmap, OutputArray ymap) const argument
88 return warper->buildMaps(src_size, K, R, xmap, ymap);
/external/webrtc/webrtc/common_audio/
H A Daudio_converter.cc33 void Convert(const float* const* src, size_t src_size, float* const* dst,
35 CheckSizes(src_size, dst_capacity);
50 void Convert(const float* const* src, size_t src_size, float* const* dst,
52 CheckSizes(src_size, dst_capacity);
69 void Convert(const float* const* src, size_t src_size, float* const* dst,
71 CheckSizes(src_size, dst_capacity);
93 void Convert(const float* const* src, size_t src_size, float* const* dst,
95 CheckSizes(src_size, dst_capacity);
118 void Convert(const float* const* src, size_t src_size, float* const* dst,
120 converters_.front()->Convert(src, src_size, buffers
196 CheckSizes(size_t src_size, size_t dst_capacity) const argument
[all...]
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_vlc.h70 vl_vlc_init_table(struct vl_vlc_entry *dst, unsigned dst_size, const struct vl_vlc_compressed *src, unsigned src_size) argument
75 assert(src && src_size);
82 for(; src_size > 0; --src_size, ++src) {
/external/opencv/cvaux/src/
H A Dcvlines.cpp46 uchar * dst, int *dst_num, CvSize src_size, CvPoint start, CvPoint end )
52 if( !src || !dst || (src_size.width | src_size.height) < 0 ||
53 src_step < src_size.width * 3 ||
54 (unsigned) start.x >= (unsigned) src_size.width ||
55 (unsigned) start.y >= (unsigned) src_size.height ||
56 (unsigned) end.x >= (unsigned) src_size.width ||
57 (unsigned) end.y >= (unsigned) src_size.height )
201 CvSize src_size, /* image size in pixels */
214 cvInitMatHeader( &mat, src_size
196 icvPreWarpImage8uC3R( int numLines, uchar * src, int src_step, uchar * dst, int *dst_nums, CvSize src_size, int *scanlines ) argument
[all...]
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_houghlines.cpp32 Size src_size; local
45 src_size = randomSize(500, 1920);
46 src.create(src_size, CV_8UC1);
114 Size src_size; local
/external/opencv3/modules/photo/src/
H A Ddenoising.cpp117 Size src_size = _src.size(); local
119 src_size.width > 5 && src_size.height > 5, // low accuracy on small sizes
124 _dst.create(src_size, src.type());
173 Size src_size = _src.size(); local
181 src_size.width > 5 && src_size.height > 5, // low accuracy on small sizes
186 _dst.create(src_size, type);
192 Mat l(src_size, CV_MAKE_TYPE(depth, 1));
193 Mat ab(src_size, CV_MAKE_TYP
[all...]
/external/opencv3/modules/stitching/src/
H A Dwarpers_cuda.cpp69 static void buildWarpPlaneMaps(Size src_size, Rect dst_roi, InputArray _K, InputArray _R, InputArray _T, argument
72 (void) src_size;
97 static void buildWarpSphericalMaps(Size src_size, Rect dst_roi, InputArray _K, InputArray _R, float scale, argument
100 (void) src_size;
122 static void buildWarpCylindricalMaps(Size src_size, Rect dst_roi, InputArray _K, InputArray _R, float scale, argument
125 (void) src_size;
149 Rect cv::detail::PlaneWarperGpu::buildMaps(Size src_size, InputArray K, InputArray R, argument
152 return buildMaps(src_size, K, R, Mat::zeros(3, 1, CV_32F), xmap, ymap);
155 Rect cv::detail::PlaneWarperGpu::buildMaps(Size src_size, InputArray K, InputArray R, InputArray T, argument
159 (void)src_size;
210 buildMaps(Size src_size, InputArray K, InputArray R, cuda::GpuMat & xmap, cuda::GpuMat & ymap) argument
255 buildMaps(Size src_size, InputArray K, InputArray R, cuda::GpuMat & xmap, cuda::GpuMat & ymap) argument
[all...]
H A Dwarpers.cpp97 Rect PlaneWarper::buildMaps(Size src_size, InputArray K, InputArray R, OutputArray xmap, OutputArray ymap) argument
99 return buildMaps(src_size, K, R, Mat::zeros(3, 1, CV_32FC1), xmap, ymap);
102 Rect PlaneWarper::buildMaps(Size src_size, InputArray K, InputArray R, InputArray T, OutputArray _xmap, OutputArray _ymap) argument
107 detectResultRoi(src_size, dst_tl, dst_br);
173 Rect PlaneWarper::warpRoi(Size src_size, InputArray K, InputArray R, InputArray T) argument
178 detectResultRoi(src_size, dst_tl, dst_br);
183 Rect PlaneWarper::warpRoi(Size src_size, InputArray K, InputArray R) argument
187 return warpRoi(src_size, K, R, T);
191 void PlaneWarper::detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br) argument
204 projector_.mapForward(0, static_cast<float>(src_size
223 detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br) argument
266 detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br) argument
311 buildMaps(Size src_size, InputArray K, InputArray R, OutputArray xmap, OutputArray ymap) argument
359 buildMaps(Size src_size, InputArray K, InputArray R, OutputArray xmap, OutputArray ymap) argument
[all...]
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_bmp.cpp124 FX_DWORD src_size) {
126 _bmp_input_buffer(p->bmp_ptr, (uint8_t*)src_buf, src_size);
122 Input(void* pContext, const uint8_t* src_buf, FX_DWORD src_size) argument
H A Dcodec_int.h28 FX_DWORD src_size,
32 FX_DWORD src_size,
36 FX_DWORD src_size,
109 FX_DWORD src_size,
129 FX_DWORD src_size,
140 FX_DWORD src_size,
150 FX_DWORD src_size,
158 FX_DWORD src_size,
167 FX_DWORD src_size,
173 FX_DWORD src_size,
408 DecodeData(unsigned char* src_data, OPJ_SIZE_T src_size) argument
411 OPJ_SIZE_T src_size; member in struct:DecodeData
[all...]
H A Dfx_codec_gif.cpp186 FX_DWORD src_size) {
188 _gif_input_buffer(p->gif_ptr, (uint8_t*)src_buf, src_size);
184 Input(void* pContext, const uint8_t* src_buf, FX_DWORD src_size) argument
H A Dfx_codec_png.cpp244 FX_DWORD src_size,
254 png_process_data(p->png_ptr, p->info_ptr, (uint8_t*)src_buf, src_size);
242 Input(void* pContext, const uint8_t* src_buf, FX_DWORD src_size, CFX_DIBAttribute* pAttribute) argument
/external/libevent/
H A Dbufferevent_pair.c154 size_t src_size, dst_size; local
185 src_size = evbuffer_get_length(src->output);
191 if (src_size <= src->wm_write.low) {
/external/opencv3/modules/cudalegacy/src/
H A Dgraphcuts.cpp153 Size src_size = terminals.size(); local
155 CV_Assert(leftTransp.size() == Size(src_size.height, src_size.width));
158 CV_Assert(rightTransp.size() == Size(src_size.height, src_size.width));
161 CV_Assert(top.size() == src_size);
164 CV_Assert(bottom.size() == src_size);
167 labels.create(src_size, CV_8U);
170 sznpp.width = src_size.width;
171 sznpp.height = src_size
213 Size src_size = terminals.size(); local
[all...]
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
H A Dwarpers_inl.hpp66 Rect RotationWarperBase<P>::buildMaps(Size src_size, InputArray K, InputArray R, OutputArray _xmap, OutputArray _ymap) argument
71 detectResultRoi(src_size, dst_tl, dst_br);
139 Rect RotationWarperBase<P>::warpRoi(Size src_size, InputArray K, InputArray R) argument
144 detectResultRoi(src_size, dst_tl, dst_br);
151 void RotationWarperBase<P>::detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br) argument
159 for (int y = 0; y < src_size.height; ++y)
161 for (int x = 0; x < src_size.width; ++x)
177 void RotationWarperBase<P>::detectResultRoiByBorder(Size src_size, Point &dst_tl, Point &dst_br) argument
185 for (float x = 0; x < src_size.width; ++x)
191 projector_.mapForward(static_cast<float>(x), static_cast<float>(src_size
[all...]
/external/libunwind/src/
H A Delfxx.c462 elf_w (xz_decompress) (uint8_t* src, size_t src_size, argument
477 *dst_size = 2 * src_size;
487 src_remaining = src_size - src_offset;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_blit.c397 GLubyte *src_bits, GLuint src_size,
407 int dwords = ALIGN(src_size, 8) / 4;
428 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords);
395 intelEmitImmediateColorExpandBlit(struct intel_context *intel, GLuint cpp, GLubyte *src_bits, GLuint src_size, GLuint fg_color, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort x, GLshort y, GLshort w, GLshort h, GLenum logic_op) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_blit.c397 GLubyte *src_bits, GLuint src_size,
407 int dwords = ALIGN(src_size, 8) / 4;
428 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords);
395 intelEmitImmediateColorExpandBlit(struct intel_context *intel, GLuint cpp, GLubyte *src_bits, GLuint src_size, GLuint fg_color, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort x, GLshort y, GLshort w, GLshort h, GLenum logic_op) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_blit.c397 GLubyte *src_bits, GLuint src_size,
407 int dwords = ALIGN(src_size, 8) / 4;
428 dst_buffer, dst_pitch, dst_offset, x, y, w, h, src_size, dwords);
395 intelEmitImmediateColorExpandBlit(struct intel_context *intel, GLuint cpp, GLubyte *src_bits, GLuint src_size, GLuint fg_color, GLshort dst_pitch, drm_intel_bo *dst_buffer, GLuint dst_offset, uint32_t dst_tiling, GLshort x, GLshort y, GLshort w, GLshort h, GLenum logic_op) argument
/external/opencv/cv/src/
H A Dcvsamplers.cpp89 CvSize src_size, CvSize win_size,
107 if( ip.x + win_size.width < src_size.width )
111 rect.width = src_size.width - ip.x - 1;
128 if( ip.y + win_size.height < src_size.height )
132 rect.height = src_size.height - ip.y - 1;
148 ( const srctype* src, int src_step, CvSize src_size, \
174 if( 0 <= ip.x && ip.x + win_size.width < src_size.width && \
175 0 <= ip.y && ip.y + win_size.height < src_size.height ) \
220 sizeof(*src), src_size, win_size,ip, &r); \
267 ( const srctype* src, int src_step, CvSize src_size, \
88 icvAdjustRect( const void* srcptr, int src_step, int pix_size, CvSize src_size, CvSize win_size, CvPoint ip, CvRect* pRect ) argument
392 icvGetRectSubPix_8u32f_C1R( const uchar* src, int src_step, CvSize src_size, float* dst, int dst_step, CvSize win_size, CvPoint2D32f center ) argument
546 CvSize src_size, dst_size; local
816 CvSize src_size, dst_size; local
[all...]
/external/opencv3/modules/core/test/
H A Dtest_eigen.cpp396 int src_size = (int)(std::pow(2.0, (rand()%MAX_DEGREE)+1.)); local
398 cv::Mat src(src_size, src_size, type);
/external/opencv3/modules/imgproc/src/
H A Dsamplers.cpp50 Size src_size, Size win_size,
67 if( ip.x < src_size.width - win_size.width )
71 rect.width = src_size.width - ip.x - 1;
88 if( ip.y < src_size.height - win_size.height )
92 rect.height = src_size.height - ip.y - 1;
130 void getRectSubPix_Cn_(const _Tp* src, size_t src_step, Size src_size, argument
158 if( 0 <= ip.x && ip.x < src_size.width - win_size.width &&
159 0 <= ip.y && ip.y < src_size.height - win_size.height)
186 sizeof(*src)*cn, src_size, win_size, ip, &r);
220 ( const uchar* src, size_t src_step, Size src_size,
49 adjustRect( const uchar* src, size_t src_step, int pix_size, Size src_size, Size win_size, Point ip, Rect* pRect ) argument
219 getRectSubPix_8u32f( const uchar* src, size_t src_step, Size src_size, float* dst, size_t dst_step, Size win_size, Point2f center0, int cn ) argument
271 getQuadrangleSubPix_8u32f_CnR( const uchar* src, size_t src_step, Size src_size, float* dst, size_t dst_step, Size win_size, const double *matrix, int cn ) argument
[all...]
H A Dsumpixels.cpp359 Size src_size = src.size(); local
360 Size bufsize(((src_size.height + tileSize - 1) / tileSize) * tileSize, ((src_size.width + tileSize - 1) / tileSize) * tileSize);
371 Size sumsize(src_size.width + 1, src_size.height + 1);
399 Size src_size = src.size(); local
400 Size bufsize(((src_size.height + tileSize - 1) / tileSize) * tileSize, ((src_size.width + tileSize - 1) / tileSize) * tileSize);
412 Size sumsize(src_size.width + 1, src_size
[all...]

Completed in 742 milliseconds

12