/external/libvpx/libvpx/vp8/common/ |
H A D | invtrans.h | 36 static void vp8_inverse_transform_mby(MACROBLOCKD *xd) argument 38 short *DQC = xd->dequant_y1; 40 if (xd->mode_info_context->mbmi.mode != SPLITMV) 43 if (xd->eobs[24] > 1) 46 (&xd->block[24].dqcoeff[0], xd->qcoeff); 51 (&xd->block[24].dqcoeff[0], xd->qcoeff); 53 eob_adjust(xd->eobs, xd [all...] |
H A D | reconintra4x4.h | 16 static void intra_prediction_down_copy(MACROBLOCKD *xd, argument 19 int dst_stride = xd->dst.y_stride; 20 unsigned char *above_right_dst = xd->dst.y_buffer - dst_stride + 16;
|
H A D | findnearmv.h | 33 static void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument 35 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN)) 36 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN; 37 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN) 38 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN; 40 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN)) 41 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN; 42 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN) 43 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN; 72 MACROBLOCKD *xd, [all...] |
H A D | findnearmv.c | 26 MACROBLOCKD *xd, 36 const MODE_INFO *above = here - xd->mode_info_stride; 140 static void invert_and_clamp_mvs(int_mv *inv, int_mv *src, MACROBLOCKD *xd) argument 144 vp8_clamp_mv2(inv, xd); 145 vp8_clamp_mv2(src, xd); 151 MACROBLOCKD *xd, 162 vp8_find_near_mvs(xd, 172 &mode_mv_sb[sign_bias][NEARESTMV], xd); 174 &mode_mv_sb[sign_bias][NEARMV], xd); 176 &best_mv_sb[sign_bias], xd); 24 vp8_find_near_mvs( MACROBLOCKD *xd, const MODE_INFO *here, int_mv *nearest, int_mv *nearby, int_mv *best_mv, int cnt[4], int refframe, int *ref_frame_sign_bias ) argument 149 vp8_find_near_mvs_bias( MACROBLOCKD *xd, const MODE_INFO *here, int_mv mode_mv_sb[2][MB_MODE_COUNT], int_mv best_mv_sb[2], int cnt[4], int refframe, int *ref_frame_sign_bias ) argument [all...] |
H A D | reconinter.c | 340 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument 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) argument 574 vp8_build_inter_predictors_mb(MACROBLOCKD *xd) argument [all...] |
/external/libvpx/libvpx/vp9/common/ |
H A D | vp9_findnearmv.h | 26 void vp9_find_best_ref_mvs(MACROBLOCKD *xd, int allow_hp, 30 static void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { argument 31 clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN, 32 xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN, 33 xd->mb_to_top_edge - LEFT_TOP_MARGIN, 34 xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN); 37 void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd,
|
H A D | vp9_mvref_common.h | 17 void vp9_find_mv_refs_idx(const VP9_COMMON *cm, const MACROBLOCKD *xd, 25 static INLINE void vp9_find_mv_refs(const VP9_COMMON *cm, const MACROBLOCKD *xd, argument 31 vp9_find_mv_refs_idx(cm, xd, tile, mi, prev_mi, ref_frame,
|
H A D | vp9_findnearmv.c | 25 void vp9_find_best_ref_mvs(MACROBLOCKD *xd, int allow_hp, argument 31 clamp_mv2(&mvlist[i].as_mv, xd); 37 void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd, argument 45 MODE_INFO *const mi = xd->mi_8x8[0]; 50 vp9_find_mv_refs_idx(cm, xd, tile, mi, xd->last_mi,
|
H A D | vp9_reconinter.h | 18 void vp9_build_inter_predictors_sby(MACROBLOCKD *xd, int mi_row, int mi_col, 21 void vp9_build_inter_predictors_sbuv(MACROBLOCKD *xd, int mi_row, int mi_col, 24 void vp9_build_inter_predictors_sb(MACROBLOCKD *xd, int mi_row, int mi_col, 27 void vp9_setup_interp_filters(MACROBLOCKD *xd, 60 static void setup_dst_planes(MACROBLOCKD *xd, argument 70 struct macroblockd_plane *pd = &xd->plane[i]; 76 static void setup_pre_planes(MACROBLOCKD *xd, int i, argument 88 struct macroblockd_plane *pd = &xd->plane[j]; 95 static void set_scale_factors(MACROBLOCKD *xd, int ref0, int ref1, argument 97 xd [all...] |
H A D | vp9_loopfilter.h | 78 struct VP9Common *cm, struct macroblockd *xd, 84 struct macroblockd xd; // TODO(jzern): most of this is unnecessary to the member in struct:LoopFilterWorkerData
|
H A D | vp9_pred_common.h | 17 static INLINE const MODE_INFO *get_above_mi(const MACROBLOCKD *const xd) { argument 18 return xd->up_available ? xd->mi_8x8[-xd->mode_info_stride] : NULL; 21 static INLINE const MODE_INFO *get_left_mi(const MACROBLOCKD *const xd) { argument 22 return xd->left_available ? xd->mi_8x8[-1] : NULL; 28 static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) { argument 29 const MODE_INFO *const above_mi = get_above_mi(xd); 30 const MODE_INFO *const left_mi = get_left_mi(xd); 38 vp9_get_pred_prob_seg_id(struct segmentation *seg, const MACROBLOCKD *xd) argument 45 vp9_get_pred_context_mbskip(const MACROBLOCKD *xd) argument 55 vp9_get_pred_prob_mbskip(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 60 vp9_get_pred_flag_mbskip(const MACROBLOCKD *xd) argument 68 vp9_get_pred_prob_intra_inter(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 79 vp9_get_pred_prob_comp_inter_inter(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 88 vp9_get_pred_prob_comp_ref_p(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 96 vp9_get_pred_prob_single_ref_p1(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 104 vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 127 get_tx_probs2(TX_SIZE max_tx_size, const MACROBLOCKD *xd, const struct tx_probs *tx_probs) argument [all...] |
H A D | vp9_entropy.h | 109 static INLINE void reset_skip_context(MACROBLOCKD *xd, BLOCK_SIZE bsize) { argument 112 struct macroblockd_plane *const pd = &xd->plane[i]; 182 static void get_scan(const MACROBLOCKD *xd, TX_SIZE tx_size, argument 187 get_scan_nb_4x4(get_tx_type_4x4(type, xd, block_idx), scan, scan_nb); 190 get_scan_nb_8x8(get_tx_type_8x8(type, xd), scan, scan_nb); 193 get_scan_nb_16x16(get_tx_type_16x16(type, xd), scan, scan_nb);
|
H A D | vp9_mvref_common.c | 113 static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { argument 114 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER, 115 xd->mb_to_right_edge + MV_BORDER, 116 xd->mb_to_top_edge - MV_BORDER, 117 xd->mb_to_bottom_edge + MV_BORDER); 184 void vp9_find_mv_refs_idx(const VP9_COMMON *cm, const MACROBLOCKD *xd, argument 207 const MODE_INFO *const candidate_mi = xd->mi_8x8[mv_ref->col + mv_ref->row 208 * xd->mode_info_stride]; 234 const MB_MODE_INFO *const candidate = &xd->mi_8x8[mv_ref->col + 236 * xd [all...] |
H A D | vp9_pred_common.c | 28 unsigned char vp9_get_pred_context_switchable_interp(const MACROBLOCKD *xd) { argument 29 const MODE_INFO *const above_mi = get_above_mi(xd); 30 const MODE_INFO *const left_mi = get_left_mi(xd); 63 unsigned char vp9_get_pred_context_intra_inter(const MACROBLOCKD *xd) { argument 64 const MODE_INFO *const above_mi = get_above_mi(xd); 65 const MODE_INFO *const left_mi = get_left_mi(xd); 90 const MACROBLOCKD *xd) { 92 const MODE_INFO *const above_mi = get_above_mi(xd); 93 const MODE_INFO *const left_mi = get_left_mi(xd); 135 const MACROBLOCKD *xd) { 89 vp9_get_pred_context_comp_inter_inter(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 134 vp9_get_pred_context_comp_ref_p(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument 215 vp9_get_pred_context_single_ref_p1(const MACROBLOCKD *xd) argument 281 vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd) argument 371 vp9_get_pred_context_tx_size(const MACROBLOCKD *xd) argument 399 vp9_set_pred_flag_seg_id(MACROBLOCKD *xd, uint8_t pred_flag) argument [all...] |
H A D | vp9_reconintra.c | 372 void vp9_predict_intra_block(const MACROBLOCKD *xd, int block_idx, int bwl_in, argument 378 const int have_top = (block_idx >> bwl) || xd->up_available; 379 const int have_left = (block_idx & wmask) || xd->left_available;
|
/external/bison/lib/ |
H A D | float.in.h | 98 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in union:gl_long_double_union
|
/external/libvpx/libvpx/vp8/encoder/ |
H A D | encodeintra.c | 85 MACROBLOCKD *xd = &mb->e_mbd; local 86 intra_prediction_down_copy(xd, xd->dst.y_buffer - xd->dst.y_stride + 16); 96 MACROBLOCKD *xd = &x->e_mbd; local 98 vp8_build_intra_predictors_mby_s(xd, 99 xd->dst.y_buffer - xd->dst.y_stride, 100 xd->dst.y_buffer - 1, 101 xd 118 MACROBLOCKD *xd = &x->e_mbd; local [all...] |
H A D | ethreading.c | 67 MACROBLOCKD *xd = &x->e_mbd; local 103 xd->above_context = cm->above_context; 104 xd->left_context = &mb_row_left_context; 108 xd->up_available = (mb_row != 0); 137 xd->mb_to_left_edge = -((mb_col * 16) << 3); 138 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3; 139 xd->mb_to_top_edge = -((mb_row * 16) << 3); 140 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; 150 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset; 151 xd 371 MACROBLOCKD *xd = &x->e_mbd; local 443 MACROBLOCKD *const xd = & x->e_mbd; local [all...] |
H A D | tokenize.c | 110 MACROBLOCKD *xd = &x->e_mbd; local 121 b = xd->block + 24; 123 a = (ENTROPY_CONTEXT *)xd->above_context + 8; 124 l = (ENTROPY_CONTEXT *)xd->left_context + 8; 125 eob = xd->eobs[24]; 199 MACROBLOCKD *xd = &x->e_mbd; local 212 b = xd->block; 219 a = (ENTROPY_CONTEXT *)xd->above_context + tmp1; 220 l = (ENTROPY_CONTEXT *)xd->left_context + tmp2; 292 a = (ENTROPY_CONTEXT *)xd 381 MACROBLOCKD *xd = &x->e_mbd; local 565 MACROBLOCKD *xd = &x->e_mbd; local [all...] |
/external/valgrind/main/coregrind/m_demangle/ |
H A D | safe-ctype.c | 144 #define xd _sch_isxdigit macro 148 #define XL (const unsigned short) (lo|is|xd|pr) /* lowercase hex digit */ 150 #define XU (const unsigned short) (up|is|xd|pr) /* uppercase hex digit */ 151 #define D (const unsigned short) (di |xd|pr) /* decimal digit */
|
/external/libvpx/libvpx/vp9/encoder/ |
H A D | vp9_vaq.c | 113 MACROBLOCKD *xd = &x->e_mbd; local 115 int right_overflow = (xd->mb_to_right_edge < 0) ? 116 ((-xd->mb_to_right_edge) >> 3) : 0; 117 int bottom_overflow = (xd->mb_to_bottom_edge < 0) ? 118 ((-xd->mb_to_bottom_edge) >> 3) : 0;
|
H A D | vp9_segmentation.c | 127 MACROBLOCKD *const xd = &cpi->mb.e_mbd; local 133 xd->mi_8x8 = mi_8x8; 134 segment_id = xd->mi_8x8[0]->mbmi.segment_id; 136 set_mi_row_col(xd, tile, mi_row, bh, mi_col, bw, cm->mi_rows, cm->mi_cols); 148 const int pred_context = vp9_get_pred_context_seg_id(xd); 152 vp9_set_pred_flag_seg_id(xd, pred_flag);
|
/external/srtp/tables/ |
H A D | 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/clang/test/SemaTemplate/ |
H A D | member-template-access-expr.cpp | 25 void test_f1(XDerived xd) { argument 26 int &ir = f1<X>(xd);
|
/external/libvpx/libvpx/vp9/decoder/ |
H A D | vp9_onyxd_if.c | 111 MACROBLOCKD *xd = &pbi->mb; local 112 struct macroblockd_plane *const pd = xd->plane;
|