Lines Matching refs:size
92 #define itxfm_func(typea, typeb, size, opt) \
93 void ff_vp9_##typea##_##typeb##_##size##x##size##_add_##opt(uint8_t *dst, ptrdiff_t stride, \
95 #define itxfm_funcs(size, opt) \
96 itxfm_func(idct, idct, size, opt); \
97 itxfm_func(iadst, idct, size, opt); \
98 itxfm_func(idct, iadst, size, opt); \
99 itxfm_func(iadst, iadst, size, opt)
148 #define ipred_func(size, type, opt) \
149 void ff_vp9_ipred_##type##_##size##x##size##_##opt(uint8_t *dst, ptrdiff_t stride, \
154 #define ipred_dc_funcs(size, opt) \
155 ipred_func(size, dc, opt); \
156 ipred_func(size, dc_left, opt); \
157 ipred_func(size, dc_top, opt)
162 #define ipred_dir_tm_funcs(size, opt) \
163 ipred_func(size, tm, opt); \
164 ipred_func(size, dl, opt); \
165 ipred_func(size, dr, opt); \
166 ipred_func(size, hd, opt); \
167 ipred_func(size, hu, opt); \
168 ipred_func(size, vl, opt); \
169 ipred_func(size, vr, opt)
179 #define ipred_dir_tm_h_funcs(size, opt) \
180 ipred_dir_tm_funcs(size, opt); \
181 ipred_func(size, h, opt)
189 #define ipred_all_funcs(size, opt) \
190 ipred_dc_funcs(size, opt); \
191 ipred_dir_tm_h_funcs(size, opt)