Home | History | Annotate | Download | only in source

Lines Matching refs:row

16 #include "libyuv/row.h"
23 // ARGBScale has a function to copy pixels to a row, striding each source
50 for (int i = 0; i < width; ++i) { // column of source to row of dest.
112 // Swap first and last row and mirror the content. Uses a temporary row.
113 SIMD_ALIGNED(uint8 row[kMaxStride]);
117 // Odd height will harmlessly mirror the middle row twice.
119 ARGBMirrorRow(src, row, width); // Mirror first row into a buffer
121 ARGBMirrorRow(src_bot, dst, width); // Mirror last row into first row
123 CopyRow(row, dst_bot, width * 4); // Copy first mirrored row into last