HomeSort by relevance Sort by last modified time
    Searched defs:src_stride (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/third_party/libvpx/source/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);
vp8_enc_stubs_mmx.c 68 void vp8_subtract_b_mmx_impl(unsigned char *z, int src_stride,
74 unsigned int src_stride = be->src_stride; local
77 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
  /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);
vp8_enc_stubs_mmx.c 68 void vp8_subtract_b_mmx_impl(unsigned char *z, int src_stride,
74 unsigned int src_stride = be->src_stride; local
77 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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);
vp8_enc_stubs_mmx.c 68 void vp8_subtract_b_mmx_impl(unsigned char *z, int src_stride,
74 unsigned int src_stride = be->src_stride; local
77 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_tile_image.c 89 tile_4_4_uint32(const uint32_t *src, uint32_t *dst, unsigned src_stride)
92 const uint32_t *s1 = s0 + src_stride;
93 const uint32_t *s2 = s1 + src_stride;
94 const uint32_t *s3 = s2 + src_stride;
109 tile_4_4_uint16(const uint16_t *src, uint16_t *dst, unsigned src_stride)
112 const uint16_t *s1 = s0 + src_stride;
113 const uint16_t *s2 = s1 + src_stride;
114 const uint16_t *s3 = s2 + src_stride;
146 const uint src_stride = dst_stride * TILE_VECTOR_WIDTH; local
148 const uint tiles_per_row = src_stride / (tile_w * tile_h * bpp)
    [all...]
lp_test_conv.c 224 unsigned src_stride = src_type.length*src_type.width/8; local
234 random_vec(src_type, src + j*src_stride);
235 read_vec(src_type, src + j*src_stride, fref + j*src_type.length);
265 dump_vec(stderr, src_type, src + j*src_stride);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
subpicture.c 171 const struct pipe_box *dst_box, const void *src, unsigned src_stride,
185 src, src_stride, src_x, src_y);
353 unsigned src_stride; local
377 src_stride = image->width * util_format_get_blocksize(subpicture_priv->sampler->texture->format);
378 upload_sampler(pipe, subpicture_priv->sampler, &dst_box, image->data, src_stride, srcx, srcy);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_image.c 141 GLuint src_offset, src_stride; local
176 src_stride = unpack->RowLength;
178 src_stride = image->Width;
188 src_stride, src_buffer,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_image.c 89 tile_4_4_uint32(const uint32_t *src, uint32_t *dst, unsigned src_stride)
92 const uint32_t *s1 = s0 + src_stride;
93 const uint32_t *s2 = s1 + src_stride;
94 const uint32_t *s3 = s2 + src_stride;
109 tile_4_4_uint16(const uint16_t *src, uint16_t *dst, unsigned src_stride)
112 const uint16_t *s1 = s0 + src_stride;
113 const uint16_t *s2 = s1 + src_stride;
114 const uint16_t *s3 = s2 + src_stride;
146 const uint src_stride = dst_stride * TILE_VECTOR_WIDTH; local
148 const uint tiles_per_row = src_stride / (tile_w * tile_h * bpp)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
subpicture.c 171 const struct pipe_box *dst_box, const void *src, unsigned src_stride,
185 src, src_stride, src_x, src_y);
353 unsigned src_stride; local
377 src_stride = image->width * util_format_get_blocksize(subpicture_priv->sampler->texture->format);
378 upload_sampler(pipe, subpicture_priv->sampler, &dst_box, image->data, src_stride, srcx, srcy);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_image.c 141 GLuint src_offset, src_stride; local
176 src_stride = unpack->RowLength;
178 src_stride = image->Width;
188 src_stride, src_buffer,
  /hardware/qcom/display/msm8084/libcopybit/
software_converter.cpp 129 int src_stride; member in struct:copyInfo
156 src += info.src_stride;
166 memcpy(dst, src, info.src_stride);
167 src += info.src_stride;
197 info.src_stride = ALIGN(info.width, 32);
202 info.src_plane1_offset = info.src_stride*info.height;
207 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
242 info.src_stride = ALIGN(hnd->width, 16);
247 info.src_plane1_offset = info.src_stride*info.height;
252 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048)
    [all...]
  /hardware/qcom/display/msm8226/libcopybit/
software_converter.cpp 129 int src_stride; member in struct:copyInfo
155 src += info.src_stride;
165 memcpy(dst, src, info.src_stride);
166 src += info.src_stride;
196 info.src_stride = ALIGN(info.width, 32);
201 info.src_plane1_offset = info.src_stride*info.height;
206 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
241 info.src_stride = ALIGN(hnd->width, 16);
246 info.src_plane1_offset = info.src_stride*info.height;
251 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048)
    [all...]
  /hardware/qcom/display/msm8960/libcopybit/
software_converter.cpp 129 int src_stride; member in struct:copyInfo
155 src += info.src_stride;
165 memcpy(dst, src, info.src_stride);
166 src += info.src_stride;
196 info.src_stride = ALIGN(info.width, 32);
201 info.src_plane1_offset = info.src_stride*info.height;
206 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
241 info.src_stride = ALIGN(hnd->width, 16);
246 info.src_plane1_offset = info.src_stride*info.height;
251 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048)
    [all...]
  /hardware/qcom/display/msm8974/libcopybit/
software_converter.cpp 129 int src_stride; member in struct:copyInfo
155 src += info.src_stride;
165 memcpy(dst, src, info.src_stride);
166 src += info.src_stride;
196 info.src_stride = ALIGN(info.width, 32);
201 info.src_plane1_offset = info.src_stride*info.height;
206 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048);
241 info.src_stride = ALIGN(hnd->width, 16);
246 info.src_plane1_offset = info.src_stride*info.height;
251 info.src_plane1_offset = ALIGN(info.src_stride*info.height, 2048)
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_video_capture_host.cc 147 const size_t src_stride = frame->stride(j); local
151 src += src_stride;
  /external/chromium_org/media/base/
video_util.cc 179 int src_stride = width; local
254 src += src_stride;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_postproc.c 307 const int src_stride = src_strides[i]; local
308 const uint8_t *const src = srcs[i] + 2 * src_stride + 2;
315 vp9_post_proc_down_and_across(src, dst, src_stride, dst_stride,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_subpixel_8t_intrin_avx2.c 68 unsigned int src_stride, dst_stride; local
102 src_stride = src_pixels_per_line << 1;
187 src_ptr+=src_stride;
313 unsigned int src_stride, dst_stride; local
342 src_stride = src_pitch << 1;
454 src_ptr+=src_stride;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_tile.c 79 const void *src, int src_stride)
84 if (src_stride == 0)
85 src_stride = util_format_get_stride(format, w);
95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0);
502 unsigned src_stride = w * 4; local
515 /*z16_put_tile_rgba((ushort *) packed, w, h, p, src_stride);*/
518 /*z32_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
522 /*s8z24_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
526 /*z24s8_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
529 /*z32f_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
553 unsigned src_stride = w * 4; local
581 unsigned src_stride = w * 4; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/x11/
x_server_pixel_buffer.cc 272 int src_stride = x_image_->bytes_per_line; local
282 src_pos += src_stride;
290 int src_stride = x_image_->bytes_per_line; local
333 src_pos += src_stride;
  /external/libvpx/libvpx/vp9/common/x86/
vp9_subpixel_8t_intrin_avx2.c 68 unsigned int src_stride, dst_stride; local
102 src_stride = src_pixels_per_line << 1;
187 src_ptr+=src_stride;
313 unsigned int src_stride, dst_stride; local
342 src_stride = src_pitch << 1;
454 src_ptr+=src_stride;
  /external/mesa3d/src/gallium/auxiliary/util/
u_tile.c 79 const void *src, int src_stride)
84 if (src_stride == 0)
85 src_stride = util_format_get_stride(format, w);
95 util_copy_rect(dst, format, pt->stride, x, y, w, h, src, src_stride, 0, 0);
502 unsigned src_stride = w * 4; local
515 /*z16_put_tile_rgba((ushort *) packed, w, h, p, src_stride);*/
518 /*z32_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
522 /*s8z24_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
526 /*z24s8_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
529 /*z32f_put_tile_rgba((unsigned *) packed, w, h, p, src_stride);*/
553 unsigned src_stride = w * 4; local
581 unsigned src_stride = w * 4; local
    [all...]

Completed in 806 milliseconds

1 2 3 4