Searched refs:ref_row (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 1042 int ref_row; in vp8_diamond_search_sad_c() local 1060 ref_row = ref_mv->as_mv.row; in vp8_diamond_search_sad_c() 1063 best_mv->as_mv.row = ref_row; in vp8_diamond_search_sad_c() 1067 in_what = (unsigned char *)(base_pre + d->offset + (ref_row * pre_stride) + in vp8_diamond_search_sad_c() 1155 int ref_row; in vp8_diamond_search_sadx4() local 1173 ref_row = ref_mv->as_mv.row; in vp8_diamond_search_sadx4() 1176 best_mv->as_mv.row = ref_row; in vp8_diamond_search_sadx4() 1180 in_what = (unsigned char *)(base_pre + d->offset + (ref_row * pre_stride) + in vp8_diamond_search_sadx4() 1303 int ref_row = ref_mv->as_mv.row; in vp8_full_search_sad_c() local 1306 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() 1399 unsigned char* ref_row = ref_data + y * row_size; in iterate() local 1404 if (memcmp(ref_row, result_row, pixel_size) != 0) in iterate() 1410 << "(" << ref_row[0] << ", " << ref_row[1] << ", " << ref_row[2] << ", " in iterate() 1411 << ref_row[3] << ")" << tcu::TestLog::EndMessage; in iterate() 1416 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 | 443 const uint8_t *ref_row = src - x - y * src_stride; in build_mc_border() local 446 ref_row += (h - 1) * src_stride; in build_mc_border() 448 ref_row += y * src_stride; in build_mc_border() 462 if (left) memset(dst, ref_row[0], left); in build_mc_border() 464 if (copy) memcpy(dst + left, ref_row + x + left, copy); in build_mc_border() 466 if (right) memset(dst + left + copy, ref_row[w - 1], right); in build_mc_border() 471 if (y > 0 && y < h) ref_row += src_stride; in build_mc_border() 481 const uint16_t *ref_row = src - x - y * src_stride; in high_build_mc_border() local 484 ref_row += (h - 1) * src_stride; in high_build_mc_border() 486 ref_row += y * src_stride; in high_build_mc_border() [all …]
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 415 const uint16_t *ref_row = src - x - y * src_stride; in highbd_build_mc_border() local 418 ref_row += (h - 1) * src_stride; in highbd_build_mc_border() 420 ref_row += y * src_stride; in highbd_build_mc_border() 434 if (left) aom_memset16(dst, ref_row[0], left); in highbd_build_mc_border() 436 if (copy) memcpy(dst + left, ref_row + x + left, copy * sizeof(uint16_t)); in highbd_build_mc_border() 438 if (right) aom_memset16(dst + left + copy, ref_row[w - 1], right); in highbd_build_mc_border() 443 if (y > 0 && y < h) ref_row += src_stride; in highbd_build_mc_border() 451 const uint8_t *ref_row = src - x - y * src_stride; in build_mc_border() local 454 ref_row += (h - 1) * src_stride; in build_mc_border() 456 ref_row += y * src_stride; in build_mc_border() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 1930 int ref_row; in vp9_diamond_search_sad_c() local 1946 ref_row = ref_mv->row; in vp9_diamond_search_sad_c() 1949 best_mv->row = ref_row; in vp9_diamond_search_sad_c() 1953 in_what = xd->plane[0].pre[0].buf + ref_row * in_what_stride + ref_col; in vp9_diamond_search_sad_c()
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 1671 int ref_row; in av1_diamond_search_sad_c() local 1685 ref_row = ref_mv->row; in av1_diamond_search_sad_c() 1688 best_mv->row = ref_row; in av1_diamond_search_sad_c() 1692 in_what = xd->plane[0].pre[0].buf + ref_row * in_what_stride + ref_col; in av1_diamond_search_sad_c()
|