Lines Matching defs:y_offset

124                                              int y_offset,
137 // x_offset = 0 and y_offset = 0
139 if (y_offset == 0) {
148 // x_offset = 0 and y_offset = 8
149 } else if (y_offset == 8) {
160 // x_offset = 0 and y_offset = bilin interpolation
164 y_offset <<= 5;
166 (bilinear_filters_avx2 + y_offset));
177 // x_offset = 8 and y_offset = 0
179 if (y_offset == 0) {
190 // x_offset = 8 and y_offset = 8
191 } else if (y_offset == 8) {
210 // x_offset = 8 and y_offset = bilin interpolation
213 y_offset <<= 5;
215 (bilinear_filters_avx2 + y_offset));
233 // x_offset = bilin interpolation and y_offset = 0
235 if (y_offset == 0) {
249 // x_offset = bilin interpolation and y_offset = 8
250 } else if (y_offset == 8) {
274 // x_offset = bilin interpolation and y_offset = bilin interpolation
280 y_offset <<= 5;
282 (bilinear_filters_avx2 + y_offset));
315 int y_offset,
331 // x_offset = 0 and y_offset = 0
333 if (y_offset == 0) {
345 } else if (y_offset == 8) {
359 // x_offset = 0 and y_offset = bilin interpolation
363 y_offset <<= 5;
365 (bilinear_filters_avx2 + y_offset));
381 // x_offset = 8 and y_offset = 0
383 if (y_offset == 0) {
397 // x_offset = 8 and y_offset = 8
398 } else if (y_offset == 8) {
420 // x_offset = 8 and y_offset = bilin interpolation
423 y_offset <<= 5;
425 (bilinear_filters_avx2 + y_offset));
449 // x_offset = bilin interpolation and y_offset = 0
451 if (y_offset == 0) {
470 // x_offset = bilin interpolation and y_offset = 8
471 } else if (y_offset == 8) {
498 // x_offset = bilin interpolation and y_offset = bilin interpolation
504 y_offset <<= 5;
506 (bilinear_filters_avx2 + y_offset));