Home
last modified time | relevance | path

Searched refs:row_max (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c1362 int row_max = ref_row + distance; in vp8_full_search_sad_c() local
1397 if (row_max > x->mv_row_max) in vp8_full_search_sad_c()
1398 row_max = x->mv_row_max; in vp8_full_search_sad_c()
1400 for (r = row_min; r < row_max ; r++) in vp8_full_search_sad_c()
1457 int row_max = ref_row + distance; in vp8_full_search_sadx3() local
1494 if (row_max > x->mv_row_max) in vp8_full_search_sadx3()
1495 row_max = x->mv_row_max; in vp8_full_search_sadx3()
1497 for (r = row_min; r < row_max ; r++) in vp8_full_search_sadx3()
1590 int row_max = ref_row + distance; in vp8_full_search_sadx8() local
1629 if (row_max > x->mv_row_max) in vp8_full_search_sadx8()
[all …]
Drdopt.c1430 int row_max = (best_ref_mv->as_mv.row>>3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_best_mbsegmentation() local
1444 if (x->mv_row_max > row_max ) in vp8_rd_pick_best_mbsegmentation()
1445 x->mv_row_max = row_max; in vp8_rd_pick_best_mbsegmentation()
2253 int row_max = (best_ref_mv.as_mv.row>>3) + MAX_FULL_PEL_VAL; in vp8_rd_pick_inter_mode() local
2281 if (x->mv_row_max > row_max ) in vp8_rd_pick_inter_mode()
2282 x->mv_row_max = row_max; in vp8_rd_pick_inter_mode()
Dpickinter.c1080 int row_max = (best_ref_mv.as_mv.row>>3) in vp8_pick_inter_mode() local
1173 if (x->mv_row_max > row_max ) in vp8_pick_inter_mode()
1174 x->mv_row_max = row_max; in vp8_pick_inter_mode()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c39 int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL; in vp9_set_mv_search_range() local
44 row_max = VPXMIN(row_max, (MV_UPP >> 3) - 1); in vp9_set_mv_search_range()
54 if (x->mv_row_max > row_max) in vp9_set_mv_search_range()
55 x->mv_row_max = row_max; in vp9_set_mv_search_range()
2027 const int row_max = VPXMIN(ref_mv->row + distance, x->mv_row_max); in vp9_full_search_sad_c() local
2036 for (r = row_min; r < row_max; ++r) { in vp9_full_search_sad_c()
2060 const int row_max = VPXMIN(ref_mv->row + distance, x->mv_row_max); in vp9_full_search_sadx3() local
2069 for (r = row_min; r < row_max; ++r) { in vp9_full_search_sadx3()
2125 const int row_max = VPXMIN(ref_mv->row + distance, x->mv_row_max); in vp9_full_search_sadx8() local
2134 for (r = row_min; r < row_max; ++r) { in vp9_full_search_sadx8()
/external/opencv/cv/src/
Dcvcalibinit.cpp565 int row_min = 0, col_min = 0, row_max=0, col_max = 0; in icvOrderFoundConnectedQuads() local
590 if (row > row_max) row_max = row; in icvOrderFoundConnectedQuads()
631 int drow = row_max - row_min + 1; in icvOrderFoundConnectedQuads()
671 if (row_hist[row_max+HSIZE] > row_hist[row_min+HSIZE]) in icvOrderFoundConnectedQuads()
679 quad_count = icvTrimRow(quads,quad_count,row_max,+1); in icvOrderFoundConnectedQuads()
710 row <= row_max && row >= row_min) in icvOrderFoundConnectedQuads()