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

1 2 3

  /external/clang/test/CodeGenCXX/
microsoft-templ-uuidof.cpp 33 const _GUID &xd = __uuidof(X<C>); variable
34 // CHECK-DAG: @"\01?xd@@3ABU_GUID@@B" = {{.*}} @_GUID_dddddddd_dddd_dddd_dddd_dddddddddddd
  /external/arm-optimized-routines/math/
exp2f.c 39 double_t kd, xd, z, r, r2, y, s; local
41 xd = (double_t) x;
61 kd = eval_as_double (xd + SHIFT);
64 r = xd - kd;
expf.c 43 double_t kd, xd, z, r, r2, y, s; local
45 xd = (double_t) x;
65 z = InvLn2N * xd;
  /external/libaom/libaom/test/
intrabc_test.cc 145 MACROBLOCKD xd; local
146 memset(&xd, 0, sizeof(xd));
147 xd.tile.mi_row_start = 8 * MAX_MIB_SIZE;
148 xd.tile.mi_row_end = 16 * MAX_MIB_SIZE;
149 xd.tile.mi_col_start = 24 * MAX_MIB_SIZE;
150 xd.tile.mi_col_end = xd.tile.mi_col_start + kTileMaxMibWidth * MAX_MIB_SIZE;
151 xd.plane[1].subsampling_x = 1;
152 xd.plane[1].subsampling_y = 1
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 74 MACROBLOCKD *xd = &mb->e_mbd; local
75 intra_prediction_down_copy(xd, xd->dst.y_buffer - xd->dst.y_stride + 16);
83 MACROBLOCKD *xd = &x->e_mbd; local
85 vp8_build_intra_predictors_mby_s(xd, xd->dst.y_buffer - xd->dst.y_stride,
86 xd->dst.y_buffer - 1, xd->dst.y_stride
100 MACROBLOCKD *xd = &x->e_mbd; local
    [all...]
tokenize.c 102 MACROBLOCKD *xd = &x->e_mbd; local
113 b = xd->block + 24;
115 a = (ENTROPY_CONTEXT *)xd->above_context + 8;
116 l = (ENTROPY_CONTEXT *)xd->left_context + 8;
117 eob = xd->eobs[24];
183 MACROBLOCKD *xd = &x->e_mbd; local
196 b = xd->block;
203 a = (ENTROPY_CONTEXT *)xd->above_context + tmp1;
204 l = (ENTROPY_CONTEXT *)xd->left_context + tmp2;
274 a = (ENTROPY_CONTEXT *)xd->above_context + tmp1
354 MACROBLOCKD *xd = &x->e_mbd; local
435 MACROBLOCKD *xd = &x->e_mbd; local
    [all...]
ethreading.c 58 MACROBLOCKD *xd = &x->e_mbd; local
71 xd->mode_info_context = cm->mi + cm->mode_info_stride * (ithread + 1);
72 xd->mode_info_stride = cm->mode_info_stride;
96 xd->above_context = cm->above_context;
97 xd->left_context = &mb_row_left_context;
101 xd->up_available = (mb_row != 0);
126 xd->mb_to_left_edge = -((mb_col * 16) << 3);
127 xd->mb_to_right_edge = ((cm->mb_cols - 1 - mb_col) * 16) << 3;
128 xd->mb_to_top_edge = -((mb_row * 16) << 3);
129 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3
376 MACROBLOCKD *xd = &x->e_mbd; local
438 MACROBLOCKD *const xd = &x->e_mbd; local
    [all...]
vp8_quantize.c 293 MACROBLOCKD *xd = &x->e_mbd; local
297 if (xd->segmentation_enabled) {
299 if (xd->mb_segement_abs_delta == SEGMENT_ABSDATA) {
300 QIndex = xd->segment_feature_data[MB_LVL_ALT_Q]
301 [xd->mode_info_context->mbmi.segment_id];
305 xd->segment_feature_data[MB_LVL_ALT_Q]
306 [xd->mode_info_context->mbmi.segment_id];
321 xd->dequant_y1_dc[0] = 1;
322 xd->dequant_y1[0] = cpi->common.Y1dequant[QIndex][0];
323 xd->dequant_y2[0] = cpi->common.Y2dequant[QIndex][0]
    [all...]
  /art/test/665-checker-simd-zero/src/
Main.java 160 double[] xd = new double[total]; local
170 xd[i] = 1;
181 expectEquals(1, xd[i]);
191 zerod(xd);
201 expectEquals(0, xd[i]);
  /external/libaom/libaom/av1/encoder/
partition_strategy.h 84 MACROBLOCKD *const xd = &x->e_mbd; local
88 set_mode_info_offsets(cpi, x, xd, mi_row, mi_col);
91 av1_setup_dst_planes(xd->plane, bsize, &cm->cur_frame->buf, mi_row, mi_col, 0,
102 set_plane_n4(xd, mi_width, mi_height, num_planes);
106 xd->mb_to_top_edge = -((mi_row * MI_SIZE) * 8);
107 xd->mb_to_bottom_edge = ((cm->mi_rows - mi_height - mi_row) * MI_SIZE) * 8;
108 xd->mb_to_left_edge = -((mi_col * MI_SIZE) * 8);
109 xd->mb_to_right_edge = ((cm->mi_cols - mi_width - mi_col) * MI_SIZE) * 8;
aq_variance.c 107 MACROBLOCKD *xd = &x->e_mbd; local
113 (xd->mb_to_right_edge < 0) ? ((-xd->mb_to_right_edge) >> 3) : 0;
115 (xd->mb_to_bottom_edge < 0) ? ((-xd->mb_to_bottom_edge) >> 3) : 0;
124 if (is_cur_buf_hbd(xd)) {
151 MACROBLOCKD *xd = &x->e_mbd; local
156 const int hbd = is_cur_buf_hbd(xd);
encodemv.c 217 const MACROBLOCKD *xd = &x->e_mbd; local
218 const MB_MODE_INFO *mbmi = xd->mi[0];
mbgraph.c 30 MACROBLOCKD *const xd = &x->e_mbd; local
66 if (has_second_ref(xd->mi[0]))
67 xd->mi[0]->mode = NEW_NEWMV;
69 xd->mi[0]->mode = NEWMV;
71 xd->mi[0]->mv[0] = x->best_mv;
72 xd->mi[0]->ref_frame[1] = NONE_FRAME;
74 av1_enc_build_inter_predictor(&cpi->common, xd, mb_row, mb_col, NULL,
81 xd->plane[0].dst.buf, xd->plane[0].dst.stride);
87 MACROBLOCKD *const xd = &x->e_mbd local
123 MACROBLOCKD *const xd = &x->e_mbd; local
138 MACROBLOCKD *const xd = &x->e_mbd; local
174 MACROBLOCKD *const xd = &x->e_mbd; local
226 MACROBLOCKD *const xd = &x->e_mbd; local
    [all...]
tokenize.c 80 const MACROBLOCKD *const xd = &x->e_mbd; local
81 const MB_MODE_INFO *const mbmi = xd->mi[0];
83 params->color_map = xd->plane[plane].color_index_map;
84 params->map_cdf = plane ? xd->tile_ctx->palette_uv_color_index_cdf
85 : xd->tile_ctx->palette_y_color_index_cdf;
89 av1_get_block_dimensions(bsize, plane, xd, &params->plane_width, NULL,
137 MACROBLOCKD *const xd = &x->e_mbd; local
138 MB_MODE_INFO *const mbmi = xd->mi[0];
139 const struct macroblockd_plane *const pd = &xd->plane[plane];
140 const int max_blocks_high = max_block_high(xd, plane_bsize, plane)
195 MACROBLOCKD *const xd = &x->e_mbd; local
    [all...]
av1_quantize.c 681 MACROBLOCKD *const xd = &x->e_mbd; local
686 ? cm->base_qindex + xd->delta_qindex
690 int qmlevel = (xd->lossless[segment_id] || cm->using_qmatrix == 0)
702 memcpy(&xd->plane[0].seg_qmatrix[segment_id], cm->gqmatrix[qmlevel][0],
704 memcpy(&xd->plane[0].seg_iqmatrix[segment_id], cm->giqmatrix[qmlevel][0],
706 xd->plane[0].dequant_Q3 = cpi->dequants.y_dequant_Q3[qindex];
709 qmlevel = (xd->lossless[segment_id] || cm->using_qmatrix == 0)
720 memcpy(&xd->plane[1].seg_qmatrix[segment_id], cm->gqmatrix[qmlevel][1]
756 MACROBLOCKD *const xd = &x->e_mbd; local
    [all...]
  /art/test/645-checker-abs-simd/src/
Main.java 316 double[] xd = new double[16]; local
317 xd[0] = Double.longBitsToDouble(0x7ff0000000000001L);
318 xd[1] = Double.longBitsToDouble(0x7ff4000000000000L);
319 xd[2] = Double.longBitsToDouble(0x7ff8000000000000L);
320 xd[3] = Double.longBitsToDouble(0x7fffffffffffffffL);
321 xd[4] = Double.longBitsToDouble(0xfff0000000000001L);
322 xd[5] = Double.longBitsToDouble(0xfff4000000000000L);
323 xd[6] = Double.longBitsToDouble(0xfff8000000000000L);
324 xd[7] = Double.longBitsToDouble(0xffffffffffffffffL);
325 xd[8] = Double.NEGATIVE_INFINITY
    [all...]
  /external/libaom/libaom/av1/common/
av1_loopfilter.h 141 const MACROBLOCKD *const xd, const int plane,
146 const MACROBLOCKD *const xd, const int plane,
154 // TODO(Ranjit): When the filter functions are modified to use xd->lossless
156 MACROBLOCKD *xd; member in struct:LoopFilterWorkerData
  /external/libvpx/libvpx/vp9/decoder/
vp9_detokenize.c 74 static int decode_coefs(const MACROBLOCKD *xd, PLANE_TYPE type,
78 FRAME_COUNTS *counts = xd->counts;
80 const FRAME_CONTEXT *const fc = xd->fc;
81 const int ref = is_inter_block(xd->mi[0]);
95 (xd->bd == VPX_BITS_12)
97 : (xd->bd == VPX_BITS_10) ? vp9_cat6_prob_high12 + 2 :
102 (xd->bd == VPX_BITS_12) ? 18
103 : (xd->bd == VPX_BITS_10) ? 16 :
198 read_bool(r, 128, &value, &count, &range) ? -v : v, xd->bd);
221 static void get_ctx_shift(MACROBLOCKD *xd, int *ctx_shift_a, int *ctx_shift_l
237 MACROBLOCKD *xd = &twd->xd; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_aq_variance.c 144 MACROBLOCKD *xd = &x->e_mbd; local
147 (xd->mb_to_right_edge < 0) ? ((-xd->mb_to_right_edge) >> 3) : 0;
149 (xd->mb_to_bottom_edge < 0) ? ((-xd->mb_to_bottom_edge) >> 3) : 0;
156 if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
160 sse >>= 2 * (xd->bd - 8);
161 avg >>= (xd->bd - 8);
174 if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
vp9_encodemv.c 252 const MACROBLOCKD *xd = &td->mb.e_mbd; local
253 const MODE_INFO *mi = xd->mi[0];
vp9_mbgraph.c 29 MACROBLOCKD *const xd = &x->e_mbd; local
68 xd->mi[0]->mode = NEWMV;
69 xd->mi[0]->mv[0].as_mv = *dst_mv;
71 vp9_build_inter_predictors_sby(xd, mb_row, mb_col, BLOCK_16X16);
74 xd->plane[0].dst.buf, xd->plane[0].dst.stride);
80 MACROBLOCKD *const xd = &x->e_mbd; local
87 xd->plane[0].pre[0].buf, xd->plane[0].pre[0].stride);
117 MACROBLOCKD *const xd = &x->e_mbd local
131 MACROBLOCKD *const xd = &x->e_mbd; local
166 MACROBLOCKD *const xd = &x->e_mbd; local
218 MACROBLOCKD *const xd = &x->e_mbd; local
    [all...]
vp9_quantize.c 164 MACROBLOCKD *const xd = &x->e_mbd; local
166 struct macroblockd_plane *pd = &xd->plane[plane];
178 if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) {
281 MACROBLOCKD *const xd = &x->e_mbd; local
283 const int segment_id = xd->mi[0]->segment_id;
295 xd->plane[0].dequant = cpi->y_dequant[qindex];
308 xd->plane[i].dequant = cpi->uv_dequant[qindex];
vp9_tokenize.c 323 MACROBLOCKD *const xd = &x->e_mbd; local
325 struct macroblockd_plane *pd = &xd->plane[plane];
326 vp9_set_contexts(xd, pd, plane_bsize, tx_size, p->eobs[block] > 0, col, row);
354 MACROBLOCKD *const xd = &x->e_mbd; local
358 struct macroblockd_plane *pd = &xd->plane[plane];
359 MODE_INFO *mi = xd->mi[0];
381 so = get_scan(xd, tx_size, type, block);
417 vp9_set_contexts(xd, pd, plane_bsize, tx_size, c > 0, col, row);
469 MACROBLOCKD *const xd = &x->e_mbd; local
470 MODE_INFO *const mi = xd->mi[0]
    [all...]
  /external/testng/src/main/java/org/testng/xml/
XmlTest.java 324 for (XmlDefine xd : defines) {
325 result.put(xd.getName(), xd.getIncludes());
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 144 float xd, yd; local
145 getVertexInterpolationCoords(xd, yd, x, y, elementNdx);
146 dst.component(elementNdx).asFloat(dstComp) = interpolateVertex(valueRange.getMin().component(elementNdx).asFloat(), valueRange.getMax().component(elementNdx).asFloat(), xd, yd);

Completed in 625 milliseconds

1 2 3