Lines Matching defs:first_pixel
445 void ff_vp3_v_loop_filter_msa(uint8_t *first_pixel, ptrdiff_t stride,
460 LD_SB4(first_pixel + nstride * 2, stride, d0, d1, d2, d3);
480 /* Final move to first_pixel */
481 ST_D1(d1, 0, first_pixel + nstride);
482 ST_D1(d2, 0, first_pixel);
485 void ff_vp3_h_loop_filter_msa(uint8_t *first_pixel, ptrdiff_t stride,
499 LD_SB8(first_pixel - 2, stride, d0, d1, d2, d3, d4, d5, d6, d7);
523 /* Final move to first_pixel */
524 ST_H4(d1, 0, 1, 2, 3, first_pixel - 1, stride);
525 ST_H4(d2, 0, 1, 2, 3, first_pixel - 1 + 4 * stride, stride);