Home | History | Annotate | Download | only in source

Lines Matching refs:row

19 #include "libyuv/row.h"
889 // first row
904 lea eax, [eax + edx] // advance to next row
929 // Bilinear row filtering combines 16x2 -> 16x1. SSE2 version.
1024 // Bilinear row filtering combines 16x2 -> 16x1. SSSE3 version.
1115 // GCC versions of row functions are verbatim conversions from Visual C.
1805 // Bilinear row filtering combines 16x2 -> 16x1. SSE2 version
1878 // Bilinear row filtering combines 16x2 -> 16x1. SSSE3 version
1949 // CPU agnostic row functions
2152 // Filter row to 3/4
2173 SIMD_ALIGNED(uint8 row[kMaxInputWidth]);
2174 ScaleFilterRows_SSE2(row, src_ptr, src_stride, dst_width * 4 / 3, 256 / 4);
2175 ScaleFilterCols34_C(dst_ptr, row, dst_width);
2183 SIMD_ALIGNED(uint8 row[kMaxInputWidth]);
2184 ScaleFilterRows_SSE2(row, src_ptr, src_stride, dst_width * 4 / 3, 256 / 2);
2185 ScaleFilterCols34_C(dst_ptr, row, dst_width);
2458 // Remainder 1 or 2 rows with last row vertically unfiltered
2538 // Remainder 1 or 2 rows with last row vertically unfiltered
2646 SIMD_ALIGNED(uint16 row[kMaxInputWidth]);
2672 ScaleAddRows(src, src_stride, row, src_width, boxheight);
2673 ScaleAddCols(dst_width, boxheight, x, dx, row, dst_ptr);
2735 SIMD_ALIGNED(uint8 row[kMaxInputWidth + 16]);
2767 ScaleFilterRows(row, src, src_stride, src_width, yf);
2768 ScaleFilterCols_C(dst_ptr, row, dst_width, x, dx);