Lines Matching refs:bytes
117 #define filter_8tap_2d_fn(op, sz, f, f_opt, fname, align, bpp, bytes, opt) \
122 LOCAL_ALIGNED_##align(uint8_t, temp, [71 * 64 * bytes]); \
123 ff_vp9_put_8tap_1d_h_##sz##_##bpp##_##opt(temp, 64 * bytes, src - 3 * src_stride, \
126 ff_vp9_##op##_8tap_1d_v_##sz##_##bpp##_##opt(dst, dst_stride, temp + 3 * bytes * 64, \
127 64 * bytes, h, \
131 #define filters_8tap_2d_fn(op, sz, align, bpp, bytes, opt, f_opt) \
132 filter_8tap_2d_fn(op, sz, FILTER_8TAP_REGULAR, f_opt, regular, align, bpp, bytes, opt) \
133 filter_8tap_2d_fn(op, sz, FILTER_8TAP_SHARP, f_opt, sharp, align, bpp, bytes, opt) \
134 filter_8tap_2d_fn(op, sz, FILTER_8TAP_SMOOTH, f_opt, smooth, align, bpp, bytes, opt)
136 #define filters_8tap_2d_fn2(op, align, bpp, bytes, opt4, opt8, f_opt) \
137 filters_8tap_2d_fn(op, 64, align, bpp, bytes, opt8, f_opt) \
138 filters_8tap_2d_fn(op, 32, align, bpp, bytes, opt8, f_opt) \
139 filters_8tap_2d_fn(op, 16, align, bpp, bytes, opt8, f_opt) \
140 filters_8tap_2d_fn(op, 8, align, bpp, bytes, opt8, f_opt) \
141 filters_8tap_2d_fn(op, 4, align, bpp, bytes, opt4, f_opt)