Lines Matching refs:dxy
78 int dxy; in gmc1_motion() local
80 dxy = ((motion_x >> 3) & 1) | ((motion_y >> 2) & 2); in gmc1_motion()
82 s->hdsp.put_no_rnd_pixels_tab[0][dxy](dest_y, ptr, linesize, 16); in gmc1_motion()
84 s->hdsp.put_pixels_tab[0][dxy](dest_y, ptr, linesize, 16); in gmc1_motion()
196 int dxy = 0; in hpel_motion() local
205 dxy |= motion_x & 1; in hpel_motion()
208 dxy |= (motion_y & 1) << 1; in hpel_motion()
221 pix_op[dxy](dest, src, s->linesize, 8); in hpel_motion()
243 int dxy, uvdxy, mx, my, src_x, src_y, in mpeg_motion_internal() local
252 dxy = ((motion_y & 1) << 1) | (motion_x & 1); in mpeg_motion_internal()
264 uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1); in mpeg_motion_internal()
291 uvdxy = dxy; in mpeg_motion_internal()
354 pix_op[0][dxy](dest_y, ptr_y, linesize, h); in mpeg_motion_internal()
496 int dxy, uvdxy, mx, my, src_x, src_y, uvsrc_x, uvsrc_y, v_edge_pos; in qpel_motion() local
499 dxy = ((motion_y & 3) << 2) | (motion_x & 3); in qpel_motion()
565 qpix_op[0][dxy](dest_y, ptr_y, linesize); in qpel_motion()
580 qpix_op[1][dxy](dest_y, ptr_y, linesize); in qpel_motion()
581 qpix_op[1][dxy](dest_y + 8, ptr_y + 8, linesize); in qpel_motion()
599 int src_x, src_y, dxy, emu = 0; in chroma_4mv_motion() local
607 dxy = ((my & 1) << 1) | (mx & 1); in chroma_4mv_motion()
615 dxy &= ~1; in chroma_4mv_motion()
618 dxy &= ~2; in chroma_4mv_motion()
622 if ((unsigned)src_x >= FFMAX((s->h_edge_pos >> 1) - (dxy & 1) - 7, 0) || in chroma_4mv_motion()
623 (unsigned)src_y >= FFMAX((s->v_edge_pos >> 1) - (dxy >> 1) - 7, 0)) { in chroma_4mv_motion()
631 pix_op[dxy](dest_cb, ptr, s->uvlinesize, 8); in chroma_4mv_motion()
641 pix_op[dxy](dest_cr, ptr, s->uvlinesize, 8); in chroma_4mv_motion()
754 int dxy, mx, my, src_x, src_y; in apply_8x8() local
767 dxy = ((motion_y & 3) << 2) | (motion_x & 3); in apply_8x8()
774 dxy &= ~3; in apply_8x8()
777 dxy &= ~12; in apply_8x8()
791 qpix_op[1][dxy](dest, ptr, s->linesize); in apply_8x8()