Lines Matching refs:my

306     int mx = mv->x, my = mv->y, th;
308 y += my >> 3;
312 my &= 7;
316 th = (y + bh + 4 * !!my + 7) >> 6;
320 // (!!my * 5) than horizontally (!!mx * 4).
321 if (x < !!mx * 3 || y < !!my * 3 ||
322 x + !!mx * 4 > w - bw || y + !!my * 5 > h - bh) {
324 ref - !!my * 3 * ref_stride - !!mx * 3 * bytesperpixel,
326 bw + !!mx * 7, bh + !!my * 7,
327 x - !!mx * 3, y - !!my * 3, w, h);
328 ref = td->edge_emu_buffer + !!my * 3 * 160 + !!mx * 3 * bytesperpixel;
331 mc[!!mx][!!my](dst, dst_stride, ref, ref_stride, bh, mx << 1, my << 1);
344 int mx = mv->x * (1 << !s->ss_h), my = mv->y * (1 << !s->ss_v), th;
346 y += my >> 4;
351 my &= 15;
355 th = (y + bh + 4 * !!my + 7) >> (6 - s->ss_v);
359 // (!!my * 5) than horizontally (!!mx * 4).
360 if (x < !!mx * 3 || y < !!my * 3 ||
361 x + !!mx * 4 > w - bw || y + !!my * 5 > h - bh) {
363 ref_u - !!my * 3 * src_stride_u - !!mx * 3 * bytesperpixel,
365 bw + !!mx * 7, bh + !!my * 7,
366 x - !!mx * 3, y - !!my * 3, w, h);
367 ref_u = td->edge_emu_buffer + !!my * 3 * 160 + !!mx * 3 * bytesperpixel;
368 mc[!!mx][!!my](dst_u, dst_stride, ref_u, 160, bh, mx, my);
371 ref_v - !!my * 3 * src_stride_v - !!mx * 3 * bytesperpixel,
373 bw + !!mx * 7, bh + !!my * 7,
374 x - !!mx * 3, y - !!my * 3, w, h);
375 ref_v = td->edge_emu_buffer + !!my * 3 * 160 + !!mx * 3 * bytesperpixel;
376 mc[!!mx][!!my](dst_v, dst_stride, ref_v, 160, bh, mx, my);
378 mc[!!mx][!!my](dst_u, dst_stride, ref_u, src_stride_u, bh, mx, my);
379 mc[!!mx][!!my](dst_v, dst_stride, ref_v, src_stride_v, bh, mx, my);
423 int mx, my;
434 my = scale_mv(mv.y * 2, 1) + scale_mv(y * 16, 1);
436 y = my >> 4;
440 my &= 15;
442 refbh_m1 = ((bh - 1) * step[1] + my) >> 4;
460 smc(dst, dst_stride, ref, ref_stride, bh, mx, my, step[0], step[1]);
483 int mx, my;
499 my = scale_mv(mv.y, 1) + (scale_mv(y * 16, 1) & ~15) + (scale_mv(y * 32, 1) & 15);
502 my = scale_mv(mv.y * 2, 1) + scale_mv(y * 16, 1);
505 y = my >> 4;
510 my &= 15;
512 refbh_m1 = ((bh - 1) * step[1] + my) >> 4;
528 smc(dst_u, dst_stride, ref_u, 288, bh, mx, my, step[0], step[1]);
536 smc(dst_v, dst_stride, ref_v, 288, bh, mx, my, step[0], step[1]);
538 smc(dst_u, dst_stride, ref_u, src_stride_u, bh, mx, my, step[0], step[1]);
539 smc(dst_v, dst_stride, ref_v, src_stride_v, bh, mx, my, step[0], step[1]);