Lines Matching refs:kRowSize
1546 const int kRowSize = (width * 4 + 31) & ~31; in RGB24ToI420() local
1547 align_buffer_64(row, kRowSize * 2); in RGB24ToI420()
1558 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToI420()
1559 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in RGB24ToI420()
1561 ARGBToYRow(row + kRowSize, dst_y + dst_stride_y, width); in RGB24ToI420()
1695 const int kRowSize = (width * 4 + 31) & ~31; in RGB24ToJ420() local
1696 align_buffer_64(row, kRowSize * 2); in RGB24ToJ420()
1707 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToJ420()
1708 ARGBToUVJRow(row, kRowSize, dst_u, dst_v, width); in RGB24ToJ420()
1710 ARGBToYJRow(row + kRowSize, dst_y + dst_stride_y, width); in RGB24ToJ420()
1842 const int kRowSize = (width * 4 + 31) & ~31; in RAWToI420() local
1843 align_buffer_64(row, kRowSize * 2); in RAWToI420()
1854 RAWToARGBRow(src_raw + src_stride_raw, row + kRowSize, width); in RAWToI420()
1855 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in RAWToI420()
1857 ARGBToYRow(row + kRowSize, dst_y + dst_stride_y, width); in RAWToI420()
1997 const int kRowSize = (width * 4 + 31) & ~31; in RGB565ToI420() local
1998 align_buffer_64(row, kRowSize * 2); in RGB565ToI420()
2008 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kRowSize, width); in RGB565ToI420()
2009 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in RGB565ToI420()
2011 ARGBToYRow(row + kRowSize, dst_y + dst_stride_y, width); in RGB565ToI420()
2152 const int kRowSize = (width * 4 + 31) & ~31; in ARGB1555ToI420() local
2153 align_buffer_64(row, kRowSize * 2); in ARGB1555ToI420()
2165 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555, row + kRowSize, in ARGB1555ToI420()
2167 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in ARGB1555ToI420()
2169 ARGBToYRow(row + kRowSize, dst_y + dst_stride_y, width); in ARGB1555ToI420()
2332 const int kRowSize = (width * 4 + 31) & ~31; in ARGB4444ToI420() local
2333 align_buffer_64(row, kRowSize * 2); in ARGB4444ToI420()
2344 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
2346 ARGBToUVRow(row, kRowSize, dst_u, dst_v, width); in ARGB4444ToI420()
2348 ARGBToYRow(row + kRowSize, dst_y + dst_stride_y, width); in ARGB4444ToI420()
2455 const int kRowSize = (width * 4 + 31) & ~31; in RGB24ToJ400() local
2456 align_buffer_64(row, kRowSize * 2); in RGB24ToJ400()
2466 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kRowSize, width); in RGB24ToJ400()
2468 ARGBToYJRow(row + kRowSize, dst_yj + dst_stride_yj, width); in RGB24ToJ400()