Searched refs:ref_row (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 1040 int ref_row; in vp8_diamond_search_sad_c() local 1058 ref_row = ref_mv->as_mv.row; in vp8_diamond_search_sad_c() 1061 best_mv->as_mv.row = ref_row; in vp8_diamond_search_sad_c() 1065 in_what = (unsigned char *)(base_pre + d->offset + (ref_row * pre_stride) + in vp8_diamond_search_sad_c() 1153 int ref_row; in vp8_diamond_search_sadx4() local 1171 ref_row = ref_mv->as_mv.row; in vp8_diamond_search_sadx4() 1174 best_mv->as_mv.row = ref_row; in vp8_diamond_search_sadx4() 1178 in_what = (unsigned char *)(base_pre + d->offset + (ref_row * pre_stride) + in vp8_diamond_search_sadx4() 1301 int ref_row = ref_mv->as_mv.row; in vp8_full_search_sad_c() local 1304 int row_min = ref_row - distance; in vp8_full_search_sad_c() [all …]
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderLayeredFramebuffer.cpp | 328 const unsigned char* ref_row = ref_buffer + y * pixel_size; in iterate() local 336 const unsigned char* ref_data = ref_row + x * pixel_size; in iterate() 1397 unsigned char* ref_row = ref_data + y * row_size; in iterate() local 1402 if (memcmp(ref_row, result_row, pixel_size) != 0) in iterate() 1408 << "(" << ref_row[0] << ", " << ref_row[1] << ", " << ref_row[2] << ", " in iterate() 1409 << ref_row[3] << ")" << tcu::TestLog::EndMessage; in iterate() 1414 ref_row += pixel_size; in iterate()
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_diamond_search_sad_avx.c | 101 const int ref_row = clamp(ref_mv->row, minmv.as_mv.row, maxmv.as_mv.row); in vp9_diamond_search_sad_avx() local 104 int_mv bmv = pack_int_mv(ref_row, ref_col); in vp9_diamond_search_sad_avx() 112 x->e_mbd.plane[0].pre[0].buf + ref_row * in_what_stride + ref_col; in vp9_diamond_search_sad_avx()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 460 const uint8_t *ref_row = src - x - y * src_stride; in build_mc_border() local 463 ref_row += (h - 1) * src_stride; in build_mc_border() 465 ref_row += y * src_stride; in build_mc_border() 479 if (left) memset(dst, ref_row[0], left); in build_mc_border() 481 if (copy) memcpy(dst + left, ref_row + x + left, copy); in build_mc_border() 483 if (right) memset(dst + left + copy, ref_row[w - 1], right); in build_mc_border() 488 if (y > 0 && y < h) ref_row += src_stride; in build_mc_border() 498 const uint16_t *ref_row = src - x - y * src_stride; in high_build_mc_border() local 501 ref_row += (h - 1) * src_stride; in high_build_mc_border() 503 ref_row += y * src_stride; in high_build_mc_border() [all …]
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 399 const uint16_t *ref_row = src - x - y * src_stride; in highbd_build_mc_border() local 402 ref_row += (h - 1) * src_stride; in highbd_build_mc_border() 404 ref_row += y * src_stride; in highbd_build_mc_border() 418 if (left) aom_memset16(dst, ref_row[0], left); in highbd_build_mc_border() 420 if (copy) memcpy(dst + left, ref_row + x + left, copy * sizeof(uint16_t)); in highbd_build_mc_border() 422 if (right) aom_memset16(dst + left + copy, ref_row[w - 1], right); in highbd_build_mc_border() 427 if (y > 0 && y < h) ref_row += src_stride; in highbd_build_mc_border() 436 const uint8_t *ref_row = src - x - y * src_stride; in build_mc_border() local 439 ref_row += (h - 1) * src_stride; in build_mc_border() 441 ref_row += y * src_stride; in build_mc_border() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 2103 int ref_row; in vp9_diamond_search_sad_c() local 2119 ref_row = ref_mv->row; in vp9_diamond_search_sad_c() 2122 best_mv->row = ref_row; in vp9_diamond_search_sad_c() 2126 in_what = xd->plane[0].pre[0].buf + ref_row * in_what_stride + ref_col; in vp9_diamond_search_sad_c()
|