Home
last modified time | relevance | path

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

/external/opencv3/modules/cudalegacy/src/cuda/
DNCV.cu61 Ncv32u dstStride, in drawRects() argument
93 d_dst[ptY * dstStride + pt0x] = color; in drawRects()
112 d_dst[pt0y * dstStride + ptX] = color; in drawRects()
122 Ncv32u dstStride, in drawRectsWrapperDevice() argument
133 ncvAssertReturn(dstStride >= dstWidth, NCV_INVALID_STEP); in drawRectsWrapperDevice()
149 drawRects<T><<<grid, block>>>(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color); in drawRectsWrapperDevice()
158 Ncv32u dstStride, in ncvDrawRects_8u_device() argument
166 …return drawRectsWrapperDevice(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color, cuS… in ncvDrawRects_8u_device()
171 Ncv32u dstStride, in ncvDrawRects_32u_device() argument
179 …return drawRectsWrapperDevice(d_dst, dstStride, dstWidth, dstHeight, d_rects, numRects, color, cuS… in ncvDrawRects_32u_device()
DNPP_staging.cu331 T_out *d_dst, Ncv32u dstStride, NcvSize32u roi) in scanRowsWrapperDevice() argument
348 (d_src, (Ncv32u)alignmentOffset, roi.width, srcStride, d_dst, dstStride); in scanRowsWrapperDevice()
1120 T *d_dst, Ncv32u dstStride, NcvSize32u srcRoi) in transpose() argument
1158 index_gmem = xIndex + yIndex * dstStride; in transpose()
1166 d_dst[index_gmem+i*dstStride] = tile[threadIdx.x][threadIdx.y+i]; in transpose()
1175 T *d_dst, Ncv32u dstStride, NcvSize32u srcRoi) in transposeWrapperDevice() argument
1180 dstStride >= srcRoi.height * sizeof(T) && in transposeWrapperDevice()
1181 srcStride % sizeof(T) == 0 && dstStride % sizeof(T) == 0, NPPST_INVALID_STEP); in transposeWrapperDevice()
1183 dstStride /= sizeof(T); in transposeWrapperDevice()
1191 (d_src, srcStride, d_dst, dstStride, srcRoi); in transposeWrapperDevice()
[all …]
/external/mesa3d/src/mesa/main/
Dreadpix.c63 int stride, dstStride, j; in fast_read_depth_pixels() local
86 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type); in fast_read_depth_pixels()
99 dst += dstStride; in fast_read_depth_pixels()
120 int dstStride, stride; in read_depth_pixels() local
135 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type); in read_depth_pixels()
154 dst += dstStride; in read_depth_pixels()
235 int dstStride, stride, j, texelBytes; in fast_read_rgba_pixels_memcpy() local
265 dstStride = _mesa_image_row_stride(packing, width, format, type); in fast_read_rgba_pixels_memcpy()
289 dst += dstStride; in fast_read_rgba_pixels_memcpy()
300 dst += dstStride; in fast_read_rgba_pixels_memcpy()
[all …]
Dformat_pack.c2041 GLuint dstStride = _mesa_get_format_bytes(format); in _mesa_pack_float_rgba_row() local
2051 dstPtr += dstStride; in _mesa_pack_float_rgba_row()
/external/skia/src/opts/
DSkMorphologyImageFilter_opts.h19 int radius, int width, int height, int srcStride, int dstStride) { in morph() argument
21 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride; in morph()
23 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1; in morph()
52 int radius, int width, int height, int srcStride, int dstStride) { in morph() argument
54 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride; in morph()
56 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1; in morph()
84 int radius, int width, int height, int srcStride, int dstStride) { in morph() argument
86 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride; in morph()
88 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1; in morph()
/external/opencv3/modules/cudalegacy/include/opencv2/cudalegacy/
DNPP_staging.hpp538 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);
608 Ncv32u *h_dst, Ncv32u dstStride, NcvSize32u srcRoi);
617 Ncv32s *h_dst, Ncv32u dstStride, NcvSize32u srcRoi);
626 Ncv32f *h_dst, Ncv32u dstStride, NcvSize32u srcRoi);
635 Ncv64u *h_dst, Ncv32u dstStride, NcvSize32u srcRoi);
[all …]
DNCV.hpp997 CV_EXPORTS NCVStatus ncvDrawRects_8u_host(Ncv8u *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u d…
1001 CV_EXPORTS NCVStatus ncvDrawRects_32u_host(Ncv32u *h_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u…
1005 CV_EXPORTS NCVStatus ncvDrawRects_8u_device(Ncv8u *d_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv32u…
1009 CV_EXPORTS NCVStatus ncvDrawRects_32u_device(Ncv32u *d_dst, Ncv32u dstStride, Ncv32u dstWidth, Ncv3…
/external/opencv3/modules/cudalegacy/src/
DNCV.cpp816 Ncv32u dstStride, in drawRectsWrapperHost() argument
825 ncvAssertReturn(dstStride >= dstWidth, NCV_INVALID_STEP); in drawRectsWrapperHost()
837 h_dst[each*dstStride+rect.x] = color; in drawRectsWrapperHost()
844 h_dst[each*dstStride+rect.x+rect.width-1] = color; in drawRectsWrapperHost()
851 h_dst[rect.y*dstStride+j] = color; in drawRectsWrapperHost()
858 h_dst[(rect.y+rect.height-1)*dstStride+j] = color; in drawRectsWrapperHost()
868 Ncv32u dstStride, in ncvDrawRects_8u_host() argument
875 return drawRectsWrapperHost(h_dst, dstStride, dstWidth, dstHeight, h_rects, numRects, color); in ncvDrawRects_8u_host()
880 Ncv32u dstStride, in ncvDrawRects_32u_host() argument
887 return drawRectsWrapperHost(h_dst, dstStride, dstWidth, dstHeight, h_rects, numRects, color); in ncvDrawRects_32u_host()
/external/mesa3d/src/gallium/auxiliary/util/
Du_tile.c611 const uint dstStride = w; in pipe_get_tile_z() local
633 pDest += dstStride; in pipe_get_tile_z()
648 pDest += dstStride; in pipe_get_tile_z()
663 pDest += dstStride; in pipe_get_tile_z()
677 pDest += dstStride; in pipe_get_tile_z()
699 pDest += dstStride; in pipe_get_tile_z()
721 pDest += dstStride; in pipe_get_tile_z()
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DVideoRenderer.java124 int height, int srcStride, ByteBuffer dst, int dstStride); in nativeCopyPlane() argument
/external/skia/include/effects/
DSkMorphologyImageFilter.h30 int width, int height, int srcStride, int dstStride);
/external/opencv3/3rdparty/include/ffmpeg_/libswscale/
Dswscale.h228 uint8_t *const dst[], const int dstStride[]);
/external/deqp/framework/opengl/
DgluDrawUtil.cpp313 const int dstStride = dstVA.stride != 0 ? dstVA.stride : elementSize; in copyToLayout() local
317 …deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer + ndx*dstStride, (const deUint8*)srcPtr.d… in copyToLayout()