Lines Matching refs:dxy
184 const int dxy= subx + (suby<<(1+qpel)); //FIXME log2_subpel?
192 if(dxy){
195 c->qpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride); //FIXME prototype (add h)
197 c->qpel_put[1][dxy](c->temp , ref[0] + x + y*stride , stride);
198 c->qpel_put[1][dxy](c->temp + 8, ref[0] + x + y*stride + 8, stride);
210 c->hpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride, h);
212 uvdxy= dxy | (x&1) | (2*(y&1));
643 int dxy;
648 dxy = ((my4 & 3) << 2) | (mx4 & 3);
651 s->qdsp.put_no_rnd_qpel_pixels_tab[1][dxy](dest_y, ref, stride);
653 s->qdsp.put_qpel_pixels_tab[1][dxy](dest_y, ref, stride);
656 dxy = ((my4 & 1) << 1) | (mx4 & 1);
659 s->hdsp.put_no_rnd_pixels_tab[1][dxy](dest_y , ref , stride, h);
661 s->hdsp.put_pixels_tab [1][dxy](dest_y , ref , stride, h);
692 int dxy;
698 dxy = ((my & 1) << 1) | (mx & 1);
703 s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad , s->last_picture.f->data[1] + offset, s->uvlinesize, 8);
704 s->hdsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->uvlinesize, 8);
706 s->hdsp.put_pixels_tab [1][dxy](c->scratchpad , s->last_picture.f->data[1] + offset, s->uvlinesize, 8);
707 s->hdsp.put_pixels_tab [1][dxy](c->scratchpad + 8, s->last_picture.f->data[2] + offset, s->uvlinesize, 8);
808 int dxy;
812 dxy = ((my_i & 1) << 1) | (mx_i & 1);
815 s->hdsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref , stride, h);
817 s->hdsp.put_pixels_tab [size][dxy](c->scratchpad, ref , stride, h);
1194 int dxy;
1202 dxy = ((motion_fy & 3) << 2) | (motion_fx & 3);
1207 s->qdsp.put_qpel_pixels_tab[0][dxy](dest_y, ptr, stride);
1209 dxy = ((motion_by & 3) << 2) | (motion_bx & 3);
1214 s->qdsp.avg_qpel_pixels_tab[size][dxy](dest_y, ptr, stride);
1216 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1);
1221 s->hdsp.put_pixels_tab[size][dxy](dest_y , ptr , stride, h);
1223 dxy = ((motion_by & 1) << 1) | (motion_bx & 1);
1228 s->hdsp.avg_pixels_tab[size][dxy](dest_y , ptr , stride, h);