HomeSort by relevance Sort by last modified time
    Searched full:src_stride (Results 26 - 50 of 241) sorted by null

12 3 4 5 6 7 8 910

  /external/libyuv/files/source/
rotate_argb.cc 28 void ScaleARGBRowDownEven_SSE2(const uint8* src_ptr, int src_stride,
36 static void ARGBTranspose(const uint8* src, int src_stride,
39 void (*ScaleARGBRowDownEven)(const uint8* src_ptr, int src_stride,
49 int src_pixel_step = src_stride / 4;
57 void ARGBRotate90(const uint8* src, int src_stride,
63 src += src_stride * (height - 1);
64 src_stride = -src_stride;
65 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
68 void ARGBRotate270(const uint8* src, int src_stride,
    [all...]
scale_argb.cc 41 ptrdiff_t /* src_stride */,
45 // src_stride ignored
68 ptrdiff_t src_stride,
73 mov esi, [esp + 4 + 8] // src_stride
104 void ScaleARGBRowDownEven_SSE2(const uint8* src_ptr, ptrdiff_t src_stride,
111 // src_stride ignored
143 ptrdiff_t src_stride,
151 mov esi, [esp + 12 + 8] // src_stride
194 ptrdiff_t src_stride, int dst_width,
201 mov edx, [esp + 8 + 12] // src_stride
    [all...]
scale.cc 56 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t /* src_stride */,
59 void ScaleRowDown2Int_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
63 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t /* src_stride */,
65 void ScaleRowDown4Int_NEON(const uint8* src_ptr, ptrdiff_t src_stride,
73 ptrdiff_t /* src_stride */,
76 ptrdiff_t src_stride,
79 ptrdiff_t src_stride,
85 ptrdiff_t /* src_stride */,
89 ptrdiff_t src_stride,
93 ptrdiff_t src_stride,
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_convolve.c 21 static void convolve_horiz_c(const uint8_t *src, ptrdiff_t src_stride,
57 src += src_stride;
62 static void convolve_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride,
99 src += src_stride;
104 static void convolve_vert_c(const uint8_t *src, ptrdiff_t src_stride,
117 src -= src_stride * (taps / 2 - 1);
133 sum += src[(src_y + k) * src_stride] * filter_y[k];
146 static void convolve_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride,
159 src -= src_stride * (taps / 2 - 1);
175 sum += src[(src_y + k) * src_stride] * filter_y[k]
    [all...]
vp9_sadmxn.h 18 int src_stride,
31 src_ptr += src_stride;
  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 33 void vp8_subtract_b_sse2_impl(unsigned char *z, int src_stride,
39 unsigned int src_stride = be->src_stride; local
42 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_latc.c 56 util_format_latc1_unorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
58 util_format_rgtc1_unorm_unpack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, width, height);
63 unsigned src_stride, unsigned width, unsigned height)
65 util_format_rgtc1_unorm_pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, width, height);
69 util_format_latc1_unorm_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
90 src_row += src_stride;
95 util_format_latc1_unorm_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height)
97 util_format_rgtc1_unorm_pack_rgba_float(dst_row, dst_stride, src_row, src_stride, width, height);
119 util_format_latc1_snorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
125 util_format_latc1_snorm_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height
    [all...]
u_format_other.c 37 const uint8_t *src_row, unsigned src_stride,
54 src_row += src_stride;
61 const float *src_row, unsigned src_stride,
78 src_row += src_stride/sizeof(*src_row);
97 const uint8_t *src_row, unsigned src_stride,
118 src_row += src_stride;
126 const uint8_t *src_row, unsigned src_stride,
148 src_row += src_stride/sizeof(*src_row);
155 const uint8_t *src_row, unsigned src_stride,
172 src_row += src_stride;
    [all...]
u_format_rgtc.c 51 util_format_rgtc1_unorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
71 src_row += src_stride;
77 unsigned src_stride, unsigned width, unsigned height)
88 tmp[j][i] = src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4];
99 util_format_rgtc1_unorm_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
119 src_row += src_stride;
124 util_format_rgtc1_unorm_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height)
135 tmp[j][i] = float_to_ubyte(src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4]);
163 util_format_rgtc1_snorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
169 util_format_rgtc1_snorm_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height
    [all...]
u_format_etc.h 32 util_format_etc1_rgb8_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
35 util_format_etc1_rgb8_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
38 util_format_etc1_rgb8_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
41 util_format_etc1_rgb8_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height);
u_format.c 252 const void *src, unsigned src_stride,
264 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
267 format_desc->unpack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
273 const float *src, unsigned src_stride,
289 format_desc->pack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
294 util_format_read_4ub(enum pipe_format format, uint8_t *dst, unsigned dst_stride, const void *src, unsigned src_stride, unsigned x, unsigned y, unsigned w, unsigned h)
305 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
308 format_desc->unpack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h);
313 util_format_write_4ub(enum pipe_format format, const uint8_t *src, unsigned src_stride, void *dst, unsigned dst_stride, unsigned x, unsigned y, unsigned w, unsigned h)
327 format_desc->pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h)
    [all...]
u_format_yuv.c 42 const uint8_t *src_row, unsigned src_stride,
96 src_row += src_stride/sizeof(*src_row);
104 const uint8_t *src_row, unsigned src_stride,
158 src_row += src_stride/sizeof(*src_row);
166 const float *src_row, unsigned src_stride,
216 src_row += src_stride/sizeof(*src_row);
223 const uint8_t *src_row, unsigned src_stride,
273 src_row += src_stride/sizeof(*src_row);
294 const uint8_t *src_row, unsigned src_stride,
348 src_row += src_stride/sizeof(*src_row)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_latc.c 56 util_format_latc1_unorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
58 util_format_rgtc1_unorm_unpack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, width, height);
63 unsigned src_stride, unsigned width, unsigned height)
65 util_format_rgtc1_unorm_pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, width, height);
69 util_format_latc1_unorm_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
90 src_row += src_stride;
95 util_format_latc1_unorm_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height)
97 util_format_rgtc1_unorm_pack_rgba_float(dst_row, dst_stride, src_row, src_stride, width, height);
119 util_format_latc1_snorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
125 util_format_latc1_snorm_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height
    [all...]
u_format_other.c 37 const uint8_t *src_row, unsigned src_stride,
54 src_row += src_stride;
61 const float *src_row, unsigned src_stride,
78 src_row += src_stride/sizeof(*src_row);
97 const uint8_t *src_row, unsigned src_stride,
118 src_row += src_stride;
126 const uint8_t *src_row, unsigned src_stride,
148 src_row += src_stride/sizeof(*src_row);
155 const uint8_t *src_row, unsigned src_stride,
172 src_row += src_stride;
    [all...]
u_format_rgtc.c 51 util_format_rgtc1_unorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
71 src_row += src_stride;
77 unsigned src_stride, unsigned width, unsigned height)
88 tmp[j][i] = src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4];
99 util_format_rgtc1_unorm_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
119 src_row += src_stride;
124 util_format_rgtc1_unorm_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height)
135 tmp[j][i] = float_to_ubyte(src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4]);
163 util_format_rgtc1_snorm_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height)
169 util_format_rgtc1_snorm_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height
    [all...]
u_format_etc.h 32 util_format_etc1_rgb8_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
35 util_format_etc1_rgb8_pack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
38 util_format_etc1_rgb8_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height);
41 util_format_etc1_rgb8_pack_rgba_float(uint8_t *dst_row, unsigned dst_stride, const float *src_row, unsigned src_stride, unsigned width, unsigned height);
u_format.c 252 const void *src, unsigned src_stride,
264 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
267 format_desc->unpack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
273 const float *src, unsigned src_stride,
289 format_desc->pack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
294 util_format_read_4ub(enum pipe_format format, uint8_t *dst, unsigned dst_stride, const void *src, unsigned src_stride, unsigned x, unsigned y, unsigned w, unsigned h)
305 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
308 format_desc->unpack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h);
313 util_format_write_4ub(enum pipe_format format, const uint8_t *src, unsigned src_stride, void *dst, unsigned dst_stride, unsigned x, unsigned y, unsigned w, unsigned h)
327 format_desc->pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h)
    [all...]
u_format_yuv.c 42 const uint8_t *src_row, unsigned src_stride,
96 src_row += src_stride/sizeof(*src_row);
104 const uint8_t *src_row, unsigned src_stride,
158 src_row += src_stride/sizeof(*src_row);
166 const float *src_row, unsigned src_stride,
216 src_row += src_stride/sizeof(*src_row);
223 const uint8_t *src_row, unsigned src_stride,
273 src_row += src_stride/sizeof(*src_row);
294 const uint8_t *src_row, unsigned src_stride,
348 src_row += src_stride/sizeof(*src_row)
    [all...]
  /external/libvpx/libvpx/vpx_scale/mips/dspr2/
yv12extend_dspr2.c 19 static void extend_plane(uint8_t *const src, int src_stride,
81 left_src += src_stride;
82 right_src += src_stride;
83 left_dst_start += src_stride;
84 right_dst_start += src_stride;
91 bot_src = src + src_stride * (height - 1) - extend_left;
92 top_dst = src + src_stride * (-extend_top) - extend_left;
93 bot_dst = src + src_stride * (height) - extend_left;
98 top_dst += src_stride;
103 bot_dst += src_stride;
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/dspr2/
reconinter_dspr2.c 29 int src_stride,
39 prefetch_load_int(src + src_stride);
56 src += src_stride;
64 int src_stride,
72 prefetch_load_int(src + src_stride);
86 src += src_stride;
94 int src_stride,
102 prefetch_load_int(src + src_stride);
116 src += src_stride;
  /external/libvpx/generic/
vp8_rtcd.h 157 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
160 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
163 unsigned int vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
166 unsigned int vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
169 unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
172 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
175 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
178 void vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
181 void vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
184 void vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array)
    [all...]
  /external/libvpx/mips/
vp8_rtcd.h 157 unsigned int vp8_sad4x4_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
160 unsigned int vp8_sad8x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
163 unsigned int vp8_sad8x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
166 unsigned int vp8_sad16x8_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
169 unsigned int vp8_sad16x16_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int max_sad);
172 void vp8_sad4x4x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
175 void vp8_sad8x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
178 void vp8_sad8x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
181 void vp8_sad16x8x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array);
184 void vp8_sad16x16x3_c(const unsigned char *src_ptr, int src_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sad_array)
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_convolve8_vert_dspr2.c 24 int32_t src_stride,
48 src -= 3 * src_stride;
60 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
62 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
64 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
104 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
106 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
108 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
110 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
167 [vector4a] "r" (vector4a), [src_stride] "r" (src_stride)
    [all...]
vp9_convolve2_vert_dspr2.c 24 int32_t src_stride,
55 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
110 [src_stride] "r" (src_stride),
116 src += src_stride;
122 int32_t src_stride,
152 "add %[src_ptr], %[src_ptr], %[src_stride] \n\t"
207 [src_stride] "r" (src_stride),
213 src += src_stride;
    [all...]
vp9_common_dspr2.h 87 void vp9_convolve2_horiz_dspr2(const uint8_t *src, ptrdiff_t src_stride,
93 void vp9_convolve2_avg_horiz_dspr2(const uint8_t *src, ptrdiff_t src_stride,
99 void vp9_convolve2_avg_vert_dspr2(const uint8_t *src, ptrdiff_t src_stride,
105 void vp9_convolve2_dspr2(const uint8_t *src, ptrdiff_t src_stride,
110 void vp9_convolve2_vert_dspr2(const uint8_t *src, ptrdiff_t src_stride,

Completed in 241 milliseconds

12 3 4 5 6 7 8 910