Searched refs:dstStride (Results 1 - 13 of 13) sorted by relevance

/external/opencv3/modules/cudalegacy/src/cuda/
H A DNCV.cu61 Ncv32u dstStride,
93 d_dst[ptY * dstStride + pt0x] = color;
112 d_dst[pt0y * dstStride + ptX] = color;
122 Ncv32u dstStride,
133 ncvAssertReturn(dstStride >= dstWidth, NCV_INVALID_STEP);
149 drawRects<T><<<grid, block>>>(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color);
158 Ncv32u dstStride,
166 return drawRectsWrapperDevice(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color, cuStream);
171 Ncv32u dstStride,
179 return drawRectsWrapperDevice(d_dst, dstStride, dstWidt
[all...]
H A DNPP_staging.cu331 T_out *d_dst, Ncv32u dstStride, NcvSize32u roi)
348 (d_src, (Ncv32u)alignmentOffset, roi.width, srcStride, d_dst, dstStride);
1114 * \param dstStride [IN] Output image stride
1120 T *d_dst, Ncv32u dstStride, NcvSize32u srcRoi)
1158 index_gmem = xIndex + yIndex * dstStride;
1166 d_dst[index_gmem+i*dstStride] = tile[threadIdx.x][threadIdx.y+i];
1175 T *d_dst, Ncv32u dstStride, NcvSize32u srcRoi)
1180 dstStride >= srcRoi.height * sizeof(T) &&
1181 srcStride % sizeof(T) == 0 && dstStride % sizeof(T) == 0, NPPST_INVALID_STEP);
1183 dstStride /
[all...]
/external/skia/src/opts/
H A DSkMorphologyImageFilter_opts.h19 int radius, int width, int height, int srcStride, int dstStride) {
21 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride;
23 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1;
52 int radius, int width, int height, int srcStride, int dstStride) {
54 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride;
56 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1;
84 int radius, int width, int height, int srcStride, int dstStride) {
86 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride;
88 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1;
18 morph(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
51 morph(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
83 morph(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
H A DNPP_staging.hpp531 * \param dstStride [IN] Destination image line step
538 Ncv32u *d_dst, Ncv32u dstStride, NcvSize32u srcRoi);
547 Ncv32s *d_dst, Ncv32u dstStride, NcvSize32u srcRoi);
556 Ncv32f *d_dst, Ncv32u dstStride, NcvSize32u srcRoi);
565 Ncv64u *d_dst, Ncv32u dstStride, NcvSize32u srcRoi);
574 Ncv64s *d_dst, Ncv32u dstStride, NcvSize32u srcRoi);
583 Ncv64f *d_dst, Ncv32u dstStride, NcvSize32u srcRoi);
601 * \param dstStride [IN] Destination image line step
608 Ncv32u *h_dst, Ncv32u dstStride, NcvSize32u srcRoi);
617 Ncv32s *h_dst, Ncv32u dstStride, NcvSize32
[all...]
H A DNCV.hpp997 CV_EXPORTS NCVStatus ncvDrawRects_8u_host(Ncv8u *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight,
1001 CV_EXPORTS NCVStatus ncvDrawRects_32u_host(Ncv32u *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight,
1005 CV_EXPORTS NCVStatus ncvDrawRects_8u_device(Ncv8u *d_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight,
1009 CV_EXPORTS NCVStatus ncvDrawRects_32u_device(Ncv32u *d_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight,
/external/mesa3d/src/mesa/main/
H A Dreadpix.c63 int stride, dstStride, j; local
86 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
99 dst += dstStride;
120 int dstStride, stride; local
135 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
154 dst += dstStride;
235 int dstStride, stride, j, texelBytes; local
265 dstStride = _mesa_image_row_stride(packing, width, format, type);
289 dst += dstStride;
300 dst += dstStride;
330 int dstStride, stride, j; local
416 fast_read_depth_stencil_pixels(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLubyte *dst, int dstStride) argument
460 fast_read_depth_stencil_pixels_separate(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, uint32_t *dst, int dstStride) argument
519 slow_read_depth_stencil_pixels_separate(struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height, GLenum type, const struct gl_pixelstore_attrib *packing, GLubyte *dst, int dstStride) argument
608 int dstStride; local
[all...]
H A Dformat_pack.c2041 GLuint dstStride = _mesa_get_format_bytes(format); local
2051 dstPtr += dstStride;
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoRenderer.java124 int height, int srcStride, ByteBuffer dst, int dstStride);
123 nativeCopyPlane(ByteBuffer src, int width, int height, int srcStride, ByteBuffer dst, int dstStride) argument
/external/opencv3/modules/cudalegacy/src/
H A DNCV.cpp816 Ncv32u dstStride,
825 ncvAssertReturn(dstStride >= dstWidth, NCV_INVALID_STEP);
837 h_dst[each*dstStride+rect.x] = color;
844 h_dst[each*dstStride+rect.x+rect.width-1] = color;
851 h_dst[rect.y*dstStride+j] = color;
858 h_dst[(rect.y+rect.height-1)*dstStride+j] = color;
868 Ncv32u dstStride,
875 return drawRectsWrapperHost(h_dst, dstStride, dstWidth, dstHeight, h_rects, numRects, color);
880 Ncv32u dstStride,
887 return drawRectsWrapperHost(h_dst, dstStride, dstWidt
815 drawRectsWrapperHost(T *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight, NcvRect32u *h_rects, Ncv32u numRects, T color) argument
867 ncvDrawRects_8u_host(Ncv8u *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight, NcvRect32u *h_rects, Ncv32u numRects, Ncv8u color) argument
879 ncvDrawRects_32u_host(Ncv32u *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u dstHeight, NcvRect32u *h_rects, Ncv32u numRects, Ncv32u color) argument
[all...]
/external/skia/include/effects/
H A DSkMorphologyImageFilter.h25 * of the destination buffer (in pixels), and srcStride and dstStride are the
30 int width, int height, int srcStride, int dstStride);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_tile.c611 const uint dstStride = w; local
633 pDest += dstStride;
648 pDest += dstStride;
663 pDest += dstStride;
677 pDest += dstStride;
699 pDest += dstStride;
721 pDest += dstStride;
/external/opencv3/3rdparty/include/ffmpeg_/libswscale/
H A Dswscale.h222 * @param dstStride the array containing the strides for each plane of
228 uint8_t *const dst[], const int dstStride[]);
/external/deqp/framework/opengl/
H A DgluDrawUtil.cpp313 const int dstStride = dstVA.stride != 0 ? dstVA.stride : elementSize; local
317 deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer + ndx*dstStride, (const deUint8*)srcPtr.data + ndx*srcStride, elementSize);

Completed in 230 milliseconds