HomeSort by relevance Sort by last modified time
    Searched refs:xd (Results 151 - 175 of 589) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
reconinter.c 340 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
351 if (mv->col < (xd->mb_to_left_edge - (19 << 3)))
352 mv->col = xd->mb_to_left_edge - (16 << 3);
353 else if (mv->col > xd->mb_to_right_edge + (18 << 3))
354 mv->col = xd->mb_to_right_edge + (16 << 3);
356 if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
357 mv->row = xd->mb_to_top_edge - (16 << 3);
358 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
359 mv->row = xd->mb_to_bottom_edge + (16 << 3);
363 static void clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_detokenize.c 56 static int decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd, PLANE_TYPE type,
63 const int ref = is_inter_block(&xd->mi[0].src_mi->mbmi);
203 int vp9_decode_block_tokens(VP9_COMMON *cm, MACROBLOCKD *xd,
206 struct macroblockd_plane *const pd = &xd->plane[plane];
209 const scan_order *so = get_scan(xd, tx_size, pd->plane_type, block);
210 const int eob = decode_coefs(cm, xd, pd->plane_type,
213 vp9_set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, x, y);
  /external/libvpx/libvpx/vp8/common/
reconinter.c 340 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
351 if (mv->col < (xd->mb_to_left_edge - (19 << 3)))
352 mv->col = xd->mb_to_left_edge - (16 << 3);
353 else if (mv->col > xd->mb_to_right_edge + (18 << 3))
354 mv->col = xd->mb_to_right_edge + (16 << 3);
356 if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
357 mv->row = xd->mb_to_top_edge - (16 << 3);
358 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
359 mv->row = xd->mb_to_bottom_edge + (16 << 3);
363 static void clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_detokenize.c 82 static int decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd, PLANE_TYPE type,
89 const int ref = is_inter_block(&xd->mi[0]->mbmi);
197 int vp9_decode_block_tokens(VP9_COMMON *cm, MACROBLOCKD *xd,
200 struct macroblockd_plane *const pd = &xd->plane[plane];
203 const scan_order *so = get_scan(xd, tx_size, pd->plane_type, block);
204 const int eob = decode_coefs(cm, xd, pd->plane_type,
207 vp9_set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, x, y);
vp9_dthread.c 92 VP9_COMMON *const cm, MACROBLOCKD *const xd,
110 vp9_setup_dst_planes(xd, frame_buffer, mi_row, mi_col);
114 vp9_filter_block_plane(cm, &xd->plane[plane], mi_row, &lfm);
127 loop_filter_rows_mt(lf_data->frame_buffer, lf_data->cm, &lf_data->xd,
137 MACROBLOCKD *xd,
192 lf_data->xd = pbi->mb;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
reconinter.c 340 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
351 if (mv->col < (xd->mb_to_left_edge - (19 << 3)))
352 mv->col = xd->mb_to_left_edge - (16 << 3);
353 else if (mv->col > xd->mb_to_right_edge + (18 << 3))
354 mv->col = xd->mb_to_right_edge + (16 << 3);
356 if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
357 mv->row = xd->mb_to_top_edge - (16 << 3);
358 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
359 mv->row = xd->mb_to_bottom_edge + (16 << 3);
363 static void clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_detokenize.c 82 static int decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd, PLANE_TYPE type,
89 const int ref = is_inter_block(&xd->mi[0]->mbmi);
197 int vp9_decode_block_tokens(VP9_COMMON *cm, MACROBLOCKD *xd,
200 struct macroblockd_plane *const pd = &xd->plane[plane];
203 const scan_order *so = get_scan(xd, tx_size, pd->plane_type, block);
204 const int eob = decode_coefs(cm, xd, pd->plane_type,
207 vp9_set_contexts(xd, pd, plane_bsize, tx_size, eob > 0, x, y);
vp9_dthread.c 92 VP9_COMMON *const cm, MACROBLOCKD *const xd,
110 vp9_setup_dst_planes(xd, frame_buffer, mi_row, mi_col);
114 vp9_filter_block_plane(cm, &xd->plane[plane], mi_row, &lfm);
128 loop_filter_rows_mt(lf_data->frame_buffer, lf_data->cm, &lf_data->xd,
138 MACROBLOCKD *xd,
144 (void)xd;
184 lf_data->xd = pbi->mb;
  /external/chromium_org/third_party/icu/source/samples/props/
props.cpp 54 0xd, 0x20, 0x2d, 0x35, 0x65, 0x284, 0x665, 0x5678, 0x23456, 0x10317, 0x1D01F, 0x10fffd
  /external/icu/icu4c/source/samples/props/
props.cpp 54 0xd, 0x20, 0x2d, 0x35, 0x65, 0x284, 0x665, 0x5678, 0x23456, 0x10317, 0x1D01F, 0x10fffd
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleCoverBox.java 30 appleDataBox.setFlags(0xd);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
parse_numbers.h 177 static_assert(_Base > 0xd, "invalid digit");
179 static constexpr unsigned value{0xd};
185 static_assert(_Base > 0xd, "invalid digit");
187 static constexpr unsigned value{0xd};
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemb.c 103 MACROBLOCKD *const xd = &mb->e_mbd; local
105 struct macroblockd_plane *const pd = &xd->plane[plane];
106 const int ref = is_inter_block(&xd->mi[0].src_mi->mbmi);
119 const scan_order *const so = get_scan(xd, tx_size, type, block);
317 MACROBLOCKD *const xd = &x->e_mbd; local
319 const struct macroblockd_plane *const pd = &xd->plane[plane];
368 MACROBLOCKD *const xd = &x->e_mbd; local
370 const struct macroblockd_plane *const pd = &xd->plane[plane];
415 MACROBLOCKD *const xd = &x->e_mbd; local
417 const struct macroblockd_plane *const pd = &xd->plane[plane]
468 MACROBLOCKD *const xd = &x->e_mbd; local
549 MACROBLOCKD *const xd = &x->e_mbd; local
571 MACROBLOCKD *const xd = &x->e_mbd; local
602 MACROBLOCKD *const xd = &x->e_mbd; local
734 const MACROBLOCKD *const xd = &x->e_mbd; local
    [all...]
  /external/chromium_org/third_party/re2/re2/
perl_groups.cc 13 { 0xc, 0xd },
70 { 0x9, 0xd },
  /external/libvpx/libvpx/vp9/common/
vp9_loopfilter.h 114 struct VP9Common *cm, struct macroblockd *xd,
120 struct macroblockd xd; // TODO(jzern): most of this is unnecessary to the member in struct:LoopFilterWorkerData
vp9_reconintra.c 312 static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref,
326 const struct macroblockd_plane *const pd = &xd->plane[plane];
339 frame_width = xd->cur_buf->y_width;
340 frame_height = xd->cur_buf->y_height;
342 frame_width = xd->cur_buf->uv_width;
343 frame_height = xd->cur_buf->uv_height;
347 x0 = (-xd->mb_to_left_edge >> (3 + pd->subsampling_x)) + x;
348 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
354 if (xd->mb_to_bottom_edge < 0) {
377 if (xd->mb_to_right_edge < 0)
    [all...]
  /external/regex-re2/re2/
perl_groups.cc 13 { 0xc, 0xd },
70 { 0x9, 0xd },
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_loopfilter.h 114 struct VP9Common *cm, struct macroblockd *xd,
120 struct macroblockd xd; // TODO(jzern): most of this is unnecessary to the member in struct:LoopFilterWorkerData
vp9_reconintra.c 314 static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref,
328 const struct macroblockd_plane *const pd = &xd->plane[plane];
341 frame_width = xd->cur_buf->y_width;
342 frame_height = xd->cur_buf->y_height;
344 frame_width = xd->cur_buf->uv_width;
345 frame_height = xd->cur_buf->uv_height;
349 x0 = (-xd->mb_to_left_edge >> (3 + pd->subsampling_x)) + x;
350 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
356 if (xd->mb_to_bottom_edge < 0) {
379 if (xd->mb_to_right_edge < 0)
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/tables/
aes_tables.c 146 uint8_t x, xe, x9, xd, xb; local
155 xd = gf2_8_multiply(0x0d, x);
160 tmp.v8[2] = xd;
167 tmp.v8[3] = xd;
170 tmp.v8[0] = xd;
177 tmp.v8[1] = xd;
  /external/srtp/tables/
aes_tables.c 146 uint8_t x, xe, x9, xd, xb; local
155 xd = gf2_8_multiply(0x0d, x);
160 tmp.v8[2] = xd;
167 tmp.v8[3] = xd;
170 tmp.v8[0] = xd;
177 tmp.v8[1] = xd;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
bitstream.c 571 MACROBLOCKD *xd = &cpi->mb.e_mbd; local
577 xd->mb_to_left_edge = -((mb_col * 16) << 3);
578 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
579 xd->mb_to_top_edge = -((mb_row * 16) << 3);
580 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
630 vp8_find_near_mvs(xd, m, &n1, &n2, &best_mv, ct, rf, cpi->common.ref_frame_sign_bias);
631 vp8_clamp_mv2(&best_mv, xd);
1272 MACROBLOCKD *const xd = & cpi->mb.e_mbd; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
bitstream.c 572 MACROBLOCKD *xd = &cpi->mb.e_mbd; local
578 xd->mb_to_left_edge = -((mb_col * 16) << 3);
579 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
580 xd->mb_to_top_edge = -((mb_row * 16) << 3);
581 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
631 vp8_find_near_mvs(xd, m, &n1, &n2, &best_mv, ct, rf, cpi->common.ref_frame_sign_bias);
632 vp8_clamp_mv2(&best_mv, xd);
1273 MACROBLOCKD *const xd = & cpi->mb.e_mbd; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
bitstream.c 572 MACROBLOCKD *xd = &cpi->mb.e_mbd; local
578 xd->mb_to_left_edge = -((mb_col * 16) << 3);
579 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3;
580 xd->mb_to_top_edge = -((mb_row * 16) << 3);
581 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3;
631 vp8_find_near_mvs(xd, m, &n1, &n2, &best_mv, ct, rf, cpi->common.ref_frame_sign_bias);
632 vp8_clamp_mv2(&best_mv, xd);
1273 MACROBLOCKD *const xd = & cpi->mb.e_mbd; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_reconintra.c 625 static void build_intra_predictors_high(const MACROBLOCKD *xd,
647 const struct macroblockd_plane *const pd = &xd->plane[plane];
658 frame_width = xd->cur_buf->y_width;
659 frame_height = xd->cur_buf->y_height;
661 frame_width = xd->cur_buf->uv_width;
662 frame_height = xd->cur_buf->uv_height;
666 x0 = (-xd->mb_to_left_edge >> (3 + pd->subsampling_x)) + x;
667 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
671 if (xd->mb_to_bottom_edge < 0) {
697 if (xd->mb_to_right_edge < 0)
    [all...]

Completed in 785 milliseconds

1 2 3 4 5 67 8 91011>>