Home | History | Annotate | Download | only in common

Lines Matching refs:MV

22 typedef struct mv {
25 } MV;
29 MV as_mv;
37 static INLINE int is_zero_mv(const MV *mv) {
38 return *((const uint32_t *)mv) == 0;
41 static INLINE int is_equal_mv(const MV *a, const MV *b) {
45 static INLINE void clamp_mv(MV *mv, int min_col, int max_col, int min_row,
47 mv->col = clamp(mv->col, min_col, max_col);
48 mv->row = clamp(mv->row, min_row, max_row);