Searched defs:xd (Results 1 - 25 of 66) sorted by relevance

123

/external/clang/test/CodeGenCXX/
H A Dmicrosoft-templ-uuidof.cpp33 const _GUID &xd = __uuidof(X<C>); variable
34 // CHECK-DAG: @"\01?xd@@3ABU_GUID@@B" = {{.*}} @_GUID_dddddddd_dddd_dddd_dddd_dddddddddddd
/external/libvpx/libvpx/vp8/common/
H A Dinvtrans.h40 static INLINE void vp8_inverse_transform_mby(MACROBLOCKD *xd) argument
42 short *DQC = xd->dequant_y1;
44 if (xd->mode_info_context->mbmi.mode != SPLITMV)
47 if (xd->eobs[24] > 1)
50 (&xd->block[24].dqcoeff[0], xd->qcoeff);
55 (&xd->block[24].dqcoeff[0], xd->qcoeff);
57 eob_adjust(xd->eobs, xd
[all...]
H A Dreconintra4x4.h20 static void intra_prediction_down_copy(MACROBLOCKD *xd, argument
23 int dst_stride = xd->dst.y_stride;
24 unsigned char *above_right_dst = xd->dst.y_buffer - dst_stride + 16;
H A Dfindnearmv.h38 static INLINE void vp8_clamp_mv2(int_mv *mv, const MACROBLOCKD *xd) argument
40 if (mv->as_mv.col < (xd->mb_to_left_edge - LEFT_TOP_MARGIN))
41 mv->as_mv.col = xd->mb_to_left_edge - LEFT_TOP_MARGIN;
42 else if (mv->as_mv.col > xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN)
43 mv->as_mv.col = xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN;
45 if (mv->as_mv.row < (xd->mb_to_top_edge - LEFT_TOP_MARGIN))
46 mv->as_mv.row = xd->mb_to_top_edge - LEFT_TOP_MARGIN;
47 else if (mv->as_mv.row > xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN)
48 mv->as_mv.row = xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN;
79 MACROBLOCKD *xd,
[all...]
H A Dfindnearmv.c26 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 Dreconinter.c297 static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
308 if (mv->col < (xd->mb_to_left_edge - (19 << 3)))
309 mv->col = xd->mb_to_left_edge - (16 << 3);
310 else if (mv->col > xd->mb_to_right_edge + (18 << 3))
311 mv->col = xd->mb_to_right_edge + (16 << 3);
313 if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
314 mv->row = xd->mb_to_top_edge - (16 << 3);
315 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
316 mv->row = xd->mb_to_bottom_edge + (16 << 3);
320 static void clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd) argument
531 vp8_build_inter_predictors_mb(MACROBLOCKD *xd) argument
[all...]
/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.hpp62 inline void getVertexInterpolationCoords (float& xd, float& yd, float x, float y, int inputElementNdx) argument
65 xd = x;
67 xd = 1.0f - x;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_scan.h41 static INLINE const scan_order *get_scan(const MACROBLOCKD *xd, TX_SIZE tx_size, argument
43 const MODE_INFO *const mi = xd->mi[0];
45 if (is_inter_block(&mi->mbmi) || type != PLANE_TYPE_Y || xd->lossless) {
H A Dvp9_blockd.c40 const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
42 const struct macroblockd_plane *const pd = &xd->plane[plane];
43 const MB_MODE_INFO* mbmi = &xd->mi[0]->mbmi;
58 const int max_blocks_wide = num_4x4_w + (xd->mb_to_right_edge >= 0 ? 0 :
59 xd->mb_to_right_edge >> (5 + pd->subsampling_x));
60 const int max_blocks_high = num_4x4_h + (xd->mb_to_bottom_edge >= 0 ? 0 :
61 xd->mb_to_bottom_edge >> (5 + pd->subsampling_y));
76 void vp9_foreach_transformed_block(const MACROBLOCKD* const xd, argument
83 vp9_foreach_transformed_block_in_plane(xd, bsize, plane, visit, arg);
86 void vp9_set_contexts(const MACROBLOCKD *xd, struc argument
39 vp9_foreach_transformed_block_in_plane( const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane, foreach_transformed_block_visitor visit, void *arg) argument
128 vp9_setup_block_planes(MACROBLOCKD *xd, int ss_x, int ss_y) argument
[all...]
H A Dvp9_mvref_common.c16 static void find_mv_refs_idx(const VP9_COMMON *cm, const MACROBLOCKD *xd, argument
29 const TileInfo *const tile = &xd->tile;
40 const MODE_INFO *const candidate_mi = xd->mi[mv_ref->col + mv_ref->row *
41 xd->mi_stride];
62 const MB_MODE_INFO *const candidate = &xd->mi[mv_ref->col + mv_ref->row *
63 xd->mi_stride]->mbmi;
104 const MB_MODE_INFO *const candidate = &xd->mi[mv_ref->col + mv_ref->row
105 * xd->mi_stride]->mbmi;
146 clamp_mv_ref(&mv_ref_list[i].as_mv, xd);
149 void vp9_find_mv_refs(const VP9_COMMON *cm, const MACROBLOCKD *xd, argument
169 vp9_find_best_ref_mvs(MACROBLOCKD *xd, int allow_hp, int_mv *mvlist, int_mv *nearest_mv, int_mv *near_mv) argument
182 vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd, int block, int ref, int mi_row, int mi_col, int_mv *nearest_mv, int_mv *near_mv, uint8_t *mode_context) argument
[all...]
H A Dvp9_pred_common.c17 int vp9_get_pred_context_switchable_interp(const MACROBLOCKD *xd) { argument
22 const MB_MODE_INFO *const left_mbmi = xd->left_mbmi;
23 const int left_type = xd->left_available && is_inter_block(left_mbmi) ?
25 const MB_MODE_INFO *const above_mbmi = xd->above_mbmi;
26 const int above_type = xd->up_available && is_inter_block(above_mbmi) ?
46 int vp9_get_intra_inter_context(const MACROBLOCKD *xd) { argument
47 const MB_MODE_INFO *const above_mbmi = xd->above_mbmi;
48 const MB_MODE_INFO *const left_mbmi = xd->left_mbmi;
49 const int has_above = xd->up_available;
50 const int has_left = xd
64 vp9_get_reference_mode_context(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument
107 vp9_get_pred_context_comp_ref_p(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument
189 vp9_get_pred_context_single_ref_p1(const MACROBLOCKD *xd) argument
255 vp9_get_pred_context_single_ref_p2(const MACROBLOCKD *xd) argument
[all...]
H A Dvp9_mvref_common.h128 static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) { argument
129 clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
130 xd->mb_to_right_edge + MV_BORDER,
131 xd->mb_to_top_edge - MV_BORDER,
132 xd->mb_to_bottom_edge + MV_BORDER);
203 static INLINE void clamp_mv2(MV *mv, const MACROBLOCKD *xd) { argument
204 clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN,
205 xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN,
206 xd->mb_to_top_edge - LEFT_TOP_MARGIN,
207 xd
[all...]
H A Dvp9_pred_common.h41 static INLINE int vp9_get_pred_context_seg_id(const MACROBLOCKD *xd) { argument
42 const MODE_INFO *const above_mi = xd->above_mi;
43 const MODE_INFO *const left_mi = xd->left_mi;
52 const MACROBLOCKD *xd) {
53 return seg->pred_probs[vp9_get_pred_context_seg_id(xd)];
56 static INLINE int vp9_get_skip_context(const MACROBLOCKD *xd) { argument
57 const MODE_INFO *const above_mi = xd->above_mi;
58 const MODE_INFO *const left_mi = xd->left_mi;
65 const MACROBLOCKD *xd) {
66 return cm->fc->skip_probs[vp9_get_skip_context(xd)];
51 vp9_get_pred_prob_seg_id(const struct segmentation *seg, const MACROBLOCKD *xd) argument
64 vp9_get_skip_prob(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument
73 vp9_get_intra_inter_prob(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument
80 vp9_get_reference_mode_prob(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
103 vp9_get_pred_prob_single_ref_p2(const VP9_COMMON *cm, const MACROBLOCKD *xd) argument
112 get_tx_size_context(const MACROBLOCKD *xd) argument
146 get_tx_probs2(TX_SIZE max_tx_size, const MACROBLOCKD *xd, const struct tx_probs *tx_probs) argument
[all...]
H A Dvp9_reconintra.c113 static void build_intra_predictors_high(const MACROBLOCKD *xd, argument
135 const struct macroblockd_plane *const pd = &xd->plane[plane];
145 frame_width = xd->cur_buf->y_width;
146 frame_height = xd->cur_buf->y_height;
148 frame_width = xd->cur_buf->uv_width;
149 frame_height = xd->cur_buf->uv_height;
153 x0 = (-xd->mb_to_left_edge >> (3 + pd->subsampling_x)) + x;
154 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
158 if (xd->mb_to_bottom_edge < 0) {
184 if (xd
243 build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, PREDICTION_MODE mode, TX_SIZE tx_size, int up_available, int left_available, int right_available, int x, int y, int plane) argument
387 vp9_predict_intra_block(const MACROBLOCKD *xd, int bwl_in, TX_SIZE tx_size, PREDICTION_MODE mode, const uint8_t *ref, int ref_stride, uint8_t *dst, int dst_stride, int aoff, int loff, int plane) argument
[all...]
/external/bison/lib/
H A Dfloat.in.h98 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 Dencodeintra.c87 MACROBLOCKD *xd = &mb->e_mbd; local
88 intra_prediction_down_copy(xd, xd->dst.y_buffer - xd->dst.y_stride + 16);
98 MACROBLOCKD *xd = &x->e_mbd; local
100 vp8_build_intra_predictors_mby_s(xd,
101 xd->dst.y_buffer - xd->dst.y_stride,
102 xd->dst.y_buffer - 1,
103 xd
120 MACROBLOCKD *xd = &x->e_mbd; local
[all...]
H A Dethreading.c65 MACROBLOCKD *xd = &x->e_mbd; local
101 xd->above_context = cm->above_context;
102 xd->left_context = &mb_row_left_context;
106 xd->up_available = (mb_row != 0);
135 xd->mb_to_left_edge = -((mb_col * 16) << 3);
136 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
137 xd->mb_to_top_edge = -((mb_row * 16) << 3);
138 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3;
148 xd->dst.y_buffer = cm->yv12_fb[dst_fb_idx].y_buffer + recon_yoffset;
149 xd
387 MACROBLOCKD *xd = &x->e_mbd; local
457 MACROBLOCKD *const xd = & x->e_mbd; local
[all...]
H A Dtokenize.c110 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;
220 a = (ENTROPY_CONTEXT *)xd->above_context + tmp1;
221 l = (ENTROPY_CONTEXT *)xd->left_context + tmp2;
295 a = (ENTROPY_CONTEXT *)xd
385 MACROBLOCKD *xd = &x->e_mbd; local
569 MACROBLOCKD *xd = &x->e_mbd; local
[all...]
H A Dvp8_quantize.c368 MACROBLOCKD *xd = &x->e_mbd; local
372 if (xd->segmentation_enabled)
375 if (xd->mb_segement_abs_delta == SEGMENT_ABSDATA)
376 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
380 QIndex = cpi->common.base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][xd->mode_info_context->mbmi.segment_id];
397 xd->dequant_y1_dc[0] = 1;
398 xd->dequant_y1[0] = cpi->common.Y1dequant[QIndex][0];
399 xd
[all...]
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.c144 #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 Dvp9_ethread.c154 MACROBLOCKD *const xd = &x->e_mbd; local
156 struct macroblockd_plane *const pd = xd->plane;
H A Dvp9_aq_variance.c143 MACROBLOCKD *xd = &x->e_mbd; local
145 int right_overflow = (xd->mb_to_right_edge < 0) ?
146 ((-xd->mb_to_right_edge) >> 3) : 0;
147 int bottom_overflow = (xd->mb_to_bottom_edge < 0) ?
148 ((-xd->mb_to_bottom_edge) >> 3) : 0;
155 if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
159 sse >>= 2 * (xd->bd - 8);
160 avg >>= (xd->bd - 8);
173 if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
H A Dvp9_quantize.c196 MACROBLOCKD *const xd = &x->e_mbd; local
198 struct macroblockd_plane *pd = &xd->plane[plane];
201 if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
309 MACROBLOCKD *const xd = &x->e_mbd; local
311 const int segment_id = xd->mi[0]->mbmi.segment_id;
323 xd->plane[0].dequant = cpi->y_dequant[qindex];
336 xd->plane[i].dequant = cpi->uv_dequant[qindex];
/external/srtp/tables/
H A Daes_tables.c146 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 Dmember-template-access-expr.cpp25 void test_f1(XDerived xd) { argument
26 int &ir = f1<X>(xd);

Completed in 281 milliseconds

123