HomeSort by relevance Sort by last modified time
    Searched refs:dstStride (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/opts/
SkMorphology_opts_neon.h 9 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);
SkMorphology_opts_SSE2.h 14 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);
SkMorphology_opts_SSE2.cpp 26 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)
    [all...]
SkMorphology_opts_neon.cpp 29 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)
    [all...]
SkBlurImage_opts_neon.cpp 43 inline void store_2_pixels(uint16x8_t result16x8, SkPMColor* dst, int dstStride) {
47 vst1_lane_u32(dst + dstStride, temp, 1);
  /external/skia/src/opts/
SkMorphology_opts_neon.h 9 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);
SkMorphology_opts_SSE2.h 14 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);
SkMorphology_opts_SSE2.cpp 26 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)
    [all...]
SkMorphology_opts_neon.cpp 29 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)
    [all...]
SkBlurImage_opts_neon.cpp 43 inline void store_2_pixels(uint16x8_t result16x8, SkPMColor* dst, int dstStride) {
47 vst1_lane_u32(dst + dstStride, temp, 1);
  /frameworks/av/media/libstagefright/omx/
SoftVideoEncoderOMXComponent.cpp 353 uint8_t *dst, size_t dstStride, size_t dstVStride,
358 uint8_t *dstU = dst + dstVStride * dstStride;
359 uint8_t *dstV = dstU + (dstVStride >> 1) * (dstStride >> 1);
363 dst += dstStride;
370 dstU += dstStride >> 1;
373 dstV += dstStride >> 1;
385 dstU += (dstStride >> 1) - (width >> 1);
386 dstV += (dstStride >> 1) - (width >> 1);
425 uint8_t *dstY, size_t dstStride, size_t dstVStride,
431 uint8_t *dstU = dstY + dstStride * dstVStride
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
readpix.c 63 int stride, dstStride, j;
86 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
99 dst += dstStride;
120 int dstStride, stride;
135 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
154 dst += dstStride;
235 int dstStride, stride, j, texelBytes;
265 dstStride = _mesa_image_row_stride(packing, width, format, type);
289 dst += dstStride;
300 dst += dstStride;
    [all...]
  /external/mesa3d/src/mesa/main/
readpix.c 63 int stride, dstStride, j;
86 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
99 dst += dstStride;
120 int dstStride, stride;
135 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
154 dst += dstStride;
235 int dstStride, stride, j, texelBytes;
265 dstStride = _mesa_image_row_stride(packing, width, format, type);
289 dst += dstStride;
300 dst += dstStride;
    [all...]
  /frameworks/av/media/libstagefright/include/
SoftVideoEncoderOMXComponent.h 54 uint8_t *dst, size_t dstStride, size_t dstVStride,
61 uint8_t *dstY, size_t dstStride, size_t dstVStride,
  /external/chromium_org/third_party/skia/include/effects/
SkMorphologyImageFilter.h 24 * of the destination buffer (in pixels), and srcStride and dstStride are the
29 int width, int height, int srcStride, int dstStride);
  /external/skia/include/effects/
SkMorphologyImageFilter.h 24 * of the destination buffer (in pixels), and srcStride and dstStride are the
29 int width, int height, int srcStride, int dstStride);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_tile.c 611 const uint dstStride = w;
633 pDest += dstStride;
648 pDest += dstStride;
663 pDest += dstStride;
677 pDest += dstStride;
699 pDest += dstStride;
721 pDest += dstStride;
  /external/mesa3d/src/gallium/auxiliary/util/
u_tile.c 611 const uint dstStride = w;
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/gpu/
WebGLImageConversion.cpp     [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkMorphologyImageFilter.cpp 55 int srcStride, int dstStride)
58 const int dstStrideX = direction == kX ? 1 : dstStride;
60 const int dstStrideY = direction == kX ? dstStride : 1;
93 int srcStride, int dstStride)
96 const int dstStrideX = direction == kX ? 1 : dstStride;
98 const int dstStrideY = direction == kX ? dstStride : 1;
  /external/skia/src/effects/
SkMorphologyImageFilter.cpp 52 int srcStride, int dstStride)
55 const int dstStrideX = direction == kX ? 1 : dstStride;
57 const int dstStrideY = direction == kX ? dstStride : 1;
90 int srcStride, int dstStride)
93 const int dstStrideX = direction == kX ? 1 : dstStride;
95 const int dstStrideY = direction == kX ? dstStride : 1;
  /frameworks/base/libs/hwui/
FontRenderer.cpp 340 size_t dstStride = formatSize * cacheWidth;
352 memset(dstL += dstStride, 0, borderSize); // leading border column
353 memcpy(dst += dstStride, src += srcStride, rowSize); // glyph data
354 memset(dstR += dstStride, 0, borderSize); // trailing border column
357 memset(dstL += dstStride, 0, rowSize + 2 * borderSize);
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.cpp 157 static void copyFrame(const Color8888* src, int srcStride, Color8888* dst, int dstStride,
162 dst += dstStride;
  /external/deqp/framework/opengl/
gluDrawUtil.cpp 313 const int dstStride = dstVA.stride != 0 ? dstVA.stride : elementSize;
317 deMemcpy((deUint8*)dstBasePtr + (deUintptr)dstVA.pointer + ndx*dstStride, (const deUint8*)srcPtr.data + ndx*srcStride, elementSize);
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
filter.js 225 var dstStride = dstWidth * 4;
251 var dstIndex = y * dstStride + startX * 4;

Completed in 676 milliseconds

1 2