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

/external/chromium_org/third_party/skia/src/opts/
H A DSkMorphology_opts_SSE2.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_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.cpp28 int width, int height, int srcStride, int dstStride)
31 const int dstStrideX = direction == kX ? 1 : dstStride;
33 const int dstStrideY = direction == kX ? dstStride : 1;
58 int width, int height, int srcStride, int dstStride)
60 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
64 int width, int height, int srcStride, int dstStride)
66 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride);
70 int width, int height, int srcStride, int dstStride)
72 SkMorph_SSE2<kDilate, kY>(src, dst, radius, width, height, srcStride, dstStride);
76 int width, int height, int srcStride, int dstStride)
27 SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
57 SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
63 SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
69 SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
75 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 DSkMorphology_opts.h13 * of the destination buffer (in pixels), and srcStride and dstStride are the
18 int width, int height, int srcStride, int dstStride);
/external/skia/src/opts/
H A DSkMorphology_opts_SSE2.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_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.cpp28 int width, int height, int srcStride, int dstStride)
31 const int dstStrideX = direction == kX ? 1 : dstStride;
33 const int dstStrideY = direction == kX ? dstStride : 1;
58 int width, int height, int srcStride, int dstStride)
60 SkMorph_SSE2<kDilate, kX>(src, dst, radius, width, height, srcStride, dstStride);
64 int width, int height, int srcStride, int dstStride)
66 SkMorph_SSE2<kErode, kX>(src, dst, radius, width, height, srcStride, dstStride);
70 int width, int height, int srcStride, int dstStride)
72 SkMorph_SSE2<kDilate, kY>(src, dst, radius, width, height, srcStride, dstStride);
76 int width, int height, int srcStride, int dstStride)
27 SkMorph_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
57 SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
63 SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
69 SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
75 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 DSkMorphology_opts.h13 * of the destination buffer (in pixels), and srcStride and dstStride are the
18 int width, int height, int srcStride, int dstStride);
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext3DImagePacking.cpp1283 const void* srcStart, void* dstStart, int srcStride, int dstStride)
1284 : m_width(width), m_height(height), m_srcStart(srcStart), m_dstStart(dstStart), m_srcStride(srcStride), m_dstStride(dstStride), m_success(false)
1559 int dstStride = width * TexelBytesForFormat(dstDataFormat); local
1561 destinationData = static_cast<uint8_t*>(destinationData) + dstStride*(height - 1);
1562 dstStride = -dstStride;
1570 unsigned rowSize = (dstStride > 0) ? dstStride: -dstStride;
1575 dst += dstStride;
1282 FormatConverter(unsigned width, unsigned height, const void* srcStart, void* dstStart, int srcStride, int dstStride) argument
[all...]
/external/chromium_org/third_party/skia/src/effects/
H A DSkMorphologyImageFilter.cpp49 int srcStride, int dstStride)
52 const int dstStrideX = direction == kX ? 1 : dstStride;
54 const int dstStrideY = direction == kX ? dstStride : 1;
109 int srcStride, int dstStride)
112 const int dstStrideX = direction == kX ? 1 : dstStride;
114 const int dstStrideY = direction == kX ? dstStride : 1;
47 erode(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
107 dilate(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
/external/skia/src/effects/
H A DSkMorphologyImageFilter.cpp49 int srcStride, int dstStride)
52 const int dstStrideX = direction == kX ? 1 : dstStride;
54 const int dstStrideY = direction == kX ? dstStride : 1;
109 int srcStride, int dstStride)
112 const int dstStrideX = direction == kX ? 1 : dstStride;
114 const int dstStrideY = direction == kX ? dstStride : 1;
47 erode(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
107 dilate(const SkPMColor* src, SkPMColor* dst, int radius, int width, int height, int srcStride, int dstStride) argument
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
H A Dfilter.js225 var dstStride = dstWidth * 4;
251 var dstIndex = y * dstStride + startX * 4;

Completed in 436 milliseconds