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

1 2

  /external/libvpx/libvpx/vp8/common/
reconintra4x4.h 19 int dst_stride = xd->dst.y_stride; local
20 unsigned char *above_right_dst = xd->dst.y_buffer - dst_stride + 16;
23 unsigned int *dst_ptr0 = (unsigned int *)(above_right_dst + 4 * dst_stride);
24 unsigned int *dst_ptr1 = (unsigned int *)(above_right_dst + 8 * dst_stride);
25 unsigned int *dst_ptr2 = (unsigned int *)(above_right_dst + 12 * dst_stride);
reconinter.c 26 int dst_stride)
59 dst += dst_stride;
69 int dst_stride)
89 dst += dst_stride;
99 int dst_stride)
119 dst += dst_stride;
151 static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride)
158 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
162 vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride);
166 static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride
444 int dst_stride = x->dst.y_stride; local
473 int dst_stride = x->dst.y_stride; local
500 int dst_stride = x->dst.uv_stride; local
519 int dst_stride = x->dst.uv_stride; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 56 int dst_stride = x->e_mbd.dst.y_stride; local
58 unsigned char *Above = dst - dst_stride;
62 vp8_intra4x4_predict(Above, yleft, dst_stride, b->bmi.as_mode,
73 vp8_short_idct4x4llm(b->dqcoeff, b->predictor, 16, dst, dst_stride);
77 vp8_dc_only_idct_add(b->dqcoeff[0], b->predictor, 16, dst, dst_stride);
  /external/chromium_org/third_party/libwebp/utils/
rescaler.h 36 int dst_stride; member in struct:__anon14033
43 int dst_width, int dst_height, int dst_stride,
  /external/webp/src/utils/
rescaler.h 36 int dst_stride; member in struct:__anon30397
43 int dst_width, int dst_height, int dst_stride,
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_surface.c 310 unsigned dst_stride = dst_trans->stride; local
318 if(dst_stride == width)
323 dst_map += dst_stride;
333 dst_map += dst_stride;
342 dst_map += dst_stride;
361 dst_map += dst_stride;
377 dst_map += dst_stride;
394 dst_map += dst_stride;
u_tile.c 51 void *dst, int dst_stride)
55 if (dst_stride == 0)
56 dst_stride = util_format_get_stride(pt->resource->format, w);
66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y);
120 unsigned dst_stride)
133 p += dst_stride;
149 unsigned dst_stride)
162 p += dst_stride;
176 unsigned dst_stride)
189 p += dst_stride;
461 unsigned dst_stride = w * 4; local
876 unsigned dst_stride = w * 4; local
907 unsigned dst_stride = w * 4; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_tile_image.c 46 * at dst, with dst_stride words between rows.
49 untile_4_4_uint32(const uint32_t *src, uint32_t *dst, unsigned dst_stride)
52 uint32_t *d1 = d0 + dst_stride;
53 uint32_t *d2 = d1 + dst_stride;
54 uint32_t *d3 = d2 + dst_stride;
66 * at dst, with dst_stride words between rows.
69 untile_4_4_uint16(const uint16_t *src, uint16_t *dst, unsigned dst_stride)
72 uint16_t *d1 = d0 + dst_stride;
73 uint16_t *d2 = d1 + dst_stride;
74 uint16_t *d3 = d2 + dst_stride;
236 const uint dst_stride = src_stride * TILE_VECTOR_WIDTH; local
    [all...]
lp_test_conv.c 225 unsigned dst_stride = dst_type.length*dst_type.width/8; local
239 write_vec(dst_type, ref + j*dst_stride, fref + j*dst_type.length);
249 if(!compare_vec_with_eps(dst_type, dst + j*dst_stride, ref + j*dst_stride, eps))
278 dump_vec(stderr, dst_type, dst + j*dst_stride);
282 dump_vec(stderr, dst_type, ref + j*dst_stride);
lp_rast.c 221 const unsigned dst_stride = scene->zsbuf.stride * TILE_VECTOR_HEIGHT; local
251 dst += dst_stride;
261 dst += dst_stride;
271 dst += dst_stride;
281 dst += dst_stride;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex_image.c 142 GLuint dst_x, dst_y, dst_stride; local
184 dst_stride = intelImage->mt->region->pitch;
190 dst_stride, dst_buffer, 0,
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 310 unsigned dst_stride = dst_trans->stride; local
318 if(dst_stride == width)
323 dst_map += dst_stride;
333 dst_map += dst_stride;
342 dst_map += dst_stride;
361 dst_map += dst_stride;
377 dst_map += dst_stride;
394 dst_map += dst_stride;
u_tile.c 51 void *dst, int dst_stride)
55 if (dst_stride == 0)
56 dst_stride = util_format_get_stride(pt->resource->format, w);
66 util_copy_rect(dst, pt->resource->format, dst_stride, 0, 0, w, h, src, pt->stride, x, y);
120 unsigned dst_stride)
133 p += dst_stride;
149 unsigned dst_stride)
162 p += dst_stride;
176 unsigned dst_stride)
189 p += dst_stride;
461 unsigned dst_stride = w * 4; local
876 unsigned dst_stride = w * 4; local
907 unsigned dst_stride = w * 4; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_image.c 46 * at dst, with dst_stride words between rows.
49 untile_4_4_uint32(const uint32_t *src, uint32_t *dst, unsigned dst_stride)
52 uint32_t *d1 = d0 + dst_stride;
53 uint32_t *d2 = d1 + dst_stride;
54 uint32_t *d3 = d2 + dst_stride;
66 * at dst, with dst_stride words between rows.
69 untile_4_4_uint16(const uint16_t *src, uint16_t *dst, unsigned dst_stride)
72 uint16_t *d1 = d0 + dst_stride;
73 uint16_t *d2 = d1 + dst_stride;
74 uint16_t *d3 = d2 + dst_stride;
236 const uint dst_stride = src_stride * TILE_VECTOR_WIDTH; local
    [all...]
lp_test_conv.c 225 unsigned dst_stride = dst_type.length*dst_type.width/8; local
239 write_vec(dst_type, ref + j*dst_stride, fref + j*dst_type.length);
249 if(!compare_vec_with_eps(dst_type, dst + j*dst_stride, ref + j*dst_stride, eps))
278 dump_vec(stderr, dst_type, dst + j*dst_stride);
282 dump_vec(stderr, dst_type, ref + j*dst_stride);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex_image.c 142 GLuint dst_x, dst_y, dst_stride; local
184 dst_stride = intelImage->mt->region->pitch;
190 dst_stride, dst_buffer, 0,
  /hardware/qcom/display/msm8960/libcopybit/
software_converter.cpp 130 int dst_stride; member in struct:copyInfo
156 dst += info.dst_stride;
167 dst += info.dst_stride;
197 info.dst_stride = ALIGN(info.width, 16);
202 info.dst_plane1_offset = info.dst_stride*info.height;
207 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
242 info.dst_stride = ALIGN(info.width, 32);
247 info.dst_plane1_offset = info.dst_stride*info.height;
252 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
  /hardware/qcom/display/msm8974/libcopybit/
software_converter.cpp 130 int dst_stride; member in struct:copyInfo
156 dst += info.dst_stride;
167 dst += info.dst_stride;
197 info.dst_stride = ALIGN(info.width, 16);
202 info.dst_plane1_offset = info.dst_stride*info.height;
207 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
242 info.dst_stride = ALIGN(info.width, 32);
247 info.dst_plane1_offset = info.dst_stride*info.height;
252 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
  /hardware/qcom/display/msm8x26/libcopybit/
software_converter.cpp 130 int dst_stride; member in struct:copyInfo
156 dst += info.dst_stride;
167 dst += info.dst_stride;
197 info.dst_stride = ALIGN(info.width, 16);
202 info.dst_plane1_offset = info.dst_stride*info.height;
207 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
242 info.dst_stride = ALIGN(info.width, 32);
247 info.dst_plane1_offset = info.dst_stride*info.height;
252 info.dst_plane1_offset = ALIGN(info.dst_stride*info.height, 2048);
  /external/pixman/test/
affine-test.c 35 int src_stride, dst_stride; local
62 dst_stride = dst_width * dst_bpp + prng_rand_n (MAX_STRIDE) * dst_bpp;
67 if (dst_stride & 3)
68 dst_stride += 2;
78 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
81 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
93 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
279 for (i = 0; i < dst_stride * dst_height / 4; i++)
291 for (j = 0; j < dst_stride; j++)
292 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j))
    [all...]
blitters-test.c 231 int src_stride, dst_stride; local
283 dst_stride = pixman_image_get_stride (dst_img);
349 printf ("src_stride=%d, dst_stride=%d\n",
350 src_stride, dst_stride);
364 for (j = 0; j < dst_stride; j++)
369 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j));
composite-traps-test.c 55 int dst_stride; local
151 dst_stride = dst_width * dst_bpp + prng_rand_n (MAX_STRIDE) * dst_bpp;
152 dst_stride = (dst_stride + 3) & ~3;
154 dst_bits = (uint32_t *)make_random_bytes (dst_stride * dst_height);
160 dst_format, dst_width, dst_height, dst_bits, dst_stride);
220 for (i = 0; i < dst_stride * dst_height / 4; i++)
232 for (j = 0; j < dst_stride; j++)
233 printf ("%02X ", *((uint8_t *)dst_bits + i * dst_stride + j));
239 crc32 = compute_crc32 (0, dst_bits, dst_stride * dst_height)
    [all...]
scaling-test.c 61 int src_stride, mask_stride, dst_stride; local
117 dst_stride = dst_width * dst_bpp + prng_rand_n (MAX_STRIDE) * dst_bpp;
127 if (dst_stride & 3)
128 dst_stride += 2;
141 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
145 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
157 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
346 for (i = 0; i < dst_stride * dst_height / 4; i++)
358 for (j = 0; j < dst_stride; j++)
359 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j))
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
threading.c 176 int dst_stride = xd->dst.y_stride; local
199 Above = dst - dst_stride;
209 left_stride = dst_stride;
218 b_mode, dst, dst_stride, top_left);
224 vp8_dequant_idct_add(b->qcoeff, DQC, dst, dst_stride);
229 dst, dst_stride, dst, dst_stride);
  /external/libvpx/libvpx/vp9/common/
vp9_postproc.c 366 const int dst_stride = dst_strides[i]; local
367 uint8_t *const dst = dsts[i] + 2 * dst_stride + 2;
369 vp9_post_proc_down_and_across(src, dst, src_stride, dst_stride,

Completed in 430 milliseconds

1 2