Lines Matching full:neighbors
892 // Check 4 1-away neighbors if do_refine is true.
895 static const MV neighbors[4] = {
903 this_mv.row = br + neighbors[i].row;
904 this_mv.col = bc + neighbors[i].col;
913 this_mv.row = br + neighbors[i].row;
914 this_mv.col = bc + neighbors[i].col;
927 br += neighbors[best_site].row;
928 bc += neighbors[best_site].col;
1825 MV neighbors[4] = {{ -1, 0}, {0, -1}, {0, 1}, {1, 0}};
1856 this_row_offset = ref_mv->as_mv.row + neighbors[j].row;
1857 this_col_offset = ref_mv->as_mv.col + neighbors[j].col;
1863 check_here = (neighbors[j].row) * in_what_stride + neighbors[j].col +
1885 ref_mv->as_mv.row += neighbors[best_site].row;
1886 ref_mv->as_mv.col += neighbors[best_site].col;
1887 best_address += (neighbors[best_site].row) * in_what_stride +
1888 neighbors[best_site].col;
1909 MV neighbors[4] = {{ -1, 0}, {0, -1}, {0, 1}, {1, 0}};
1956 this_mv.as_mv.row = ref_mv->as_mv.row + neighbors[j].row;
1957 this_mv.as_mv.col = ref_mv->as_mv.col + neighbors[j].col;
1969 this_row_offset = ref_mv->as_mv.row + neighbors[j].row;
1970 this_col_offset = ref_mv->as_mv.col + neighbors[j].col;
1976 check_here = (neighbors[j].row) * in_what_stride + neighbors[j].col +
1999 ref_mv->as_mv.row += neighbors[best_site].row;
2000 ref_mv->as_mv.col += neighbors[best_site].col;
2001 best_address += (neighbors[best_site].row) * in_what_stride +
2002 neighbors[best_site].col;
2027 MV neighbors[8] = {{-1, 0}, {0, -1}, {0, 1}, {1, 0},
2060 this_row_offset = ref_mv->as_mv.row + neighbors[j].row;
2061 this_col_offset = ref_mv->as_mv.col + neighbors[j].col;
2067 check_here = (neighbors[j].row) * in_what_stride + neighbors[j].col +
2090 ref_mv->as_mv.row += neighbors[best_site].row;
2091 ref_mv->as_mv.col += neighbors[best_site].col;
2092 best_address += (neighbors[best_site].row) * in_what_stride +
2093 neighbors[best_site].col;