Home | History | Annotate | Download | only in source

Lines Matching refs:row

15 #include "row.h"
79 // Copy a row of Bayer.
355 SIMD_ALIGNED(uint8 row[kMaxStride * 2]);
360 IS_ALIGNED(row, 16) && (kMaxStride % 16 == 0) &&
371 IS_ALIGNED(row, 16) && (kMaxStride % 16 == 0) &&
403 BayerRow0(src_bayer, src_stride_bayer, row, width);
405 row + kMaxStride, width);
406 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width);
407 ARGBToYRow(row, dst_y, width);
408 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width);
416 BayerRow0(src_bayer, src_stride_bayer, row, width);
417 ARGBToUVRow(row, 0, dst_u, dst_v, width);
418 ARGBToYRow(row, dst_y, width);