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

/external/skia/src/opts/
H A DSkMorphology_opts_neon.h9 int width, int height, int srcStride, int dstStride);
11 int width, int height, int srcStride, int dstStride);
13 int width, int height, int srcStride, int dstStride);
15 int width, int height, int srcStride, int dstStride);
H A DSkMorphology_opts_SSE2.h14 int width, int height, int srcStride, int dstStride);
16 int width, int height, int srcStride, int dstStride);
18 int width, int height, int srcStride, int dstStride);
20 int width, int height, int srcStride, int dstStride);
H A DSkMorphology_opts_SSE2.cpp26 int width, int height, int srcStride, int dstStride)
29 const int dstStrideX = direction == kX ? 1 : dstStride;
31 const int dstStrideY = direction == kX ? dstStride : 1;
60 int width, int height, int srcStride, int dstStride)
62 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
66 int width, int height, int srcStride, int dstStride)
68 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride);
72 int width, int height, int srcStride, int dstStride)
74 SkMorph_SSE2<kDilate, kY>(src, dst, radius, width, height, srcStride, dstStride);
78 int width, int height, int srcStride, int dstStride)
25 SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
59 SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
65 SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
71 SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
77 SkErodeY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
[all...]
H A DSkMorphology_opts_neon.cpp29 int width, int height, int srcStride, int dstStride)
32 const int dstStrideX = direction == kX ? 1 : dstStride;
34 const int dstStrideY = direction == kX ? dstStride : 1;
59 int width, int height, int srcStride, int dstStride)
61 SkMorph_neon<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
65 int width, int height, int srcStride, int dstStride)
67 SkMorph_neon<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride);
71 int width, int height, int srcStride, int dstStride)
73 SkMorph_neon<kDilate, kY>(src, dst, radius, width, height, srcStride, dstStride);
77 int width, int height, int srcStride, int dstStride)
28 SkMorph_neon(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
58 SkDilateX_neon(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
64 SkErodeX_neon(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
70 SkDilateY_neon(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
76 SkErodeY_neon(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
[all...]
H A DSkBlurImage_opts_neon.cpp43 inline void store_2_pixels(uint16x8_t result16x8, SkPMColor* dst, int dstStride) { argument
47 vst1_lane_u32(dst + dstStride, temp, 1);
/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/skia/include/effects/
H A DSkMorphologyImageFilter.h24 * of the destination buffer (in pixels), and srcStride and dstStride are the
29 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/skia/src/effects/
H A DSkMorphologyImageFilter.cpp44 int srcStride, int dstStride)
47 const int dstStrideX = direction == kX ? 1 : dstStride;
49 const int dstStrideY = direction == kX ? dstStride : 1;
82 int srcStride, int dstStride)
85 const int dstStrideX = direction == kX ? 1 : dstStride;
87 const int dstStrideY = direction == kX ? dstStride : 1;
42 erode(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
80 dilate(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
/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 315 milliseconds