Searched defs:src_rgb565 (Results 1 - 3 of 3) sorted by relevance

/external/libyuv/files/source/
H A Dconvert_argb.cc431 int RGB565ToARGB(const uint8* src_rgb565, int src_stride_rgb565, argument
434 if (!src_rgb565 || !dst_argb ||
441 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
444 void (*RGB565ToARGBRow)(const uint8* src_rgb565, uint8* dst_argb, int pix) =
455 RGB565ToARGBRow(src_rgb565, dst_argb, width);
456 src_rgb565 += src_stride_rgb565;
H A Dconvert.cc1300 int RGB565ToI420(const uint8* src_rgb565, int src_stride_rgb565, argument
1307 } else if (!src_rgb565 ||
1315 src_rgb565 = src_rgb565 + (height - 1) * src_stride_rgb565;
1324 TestReadSafe(src_rgb565, src_stride_rgb565, width, height, 2, 16)) {
1352 RGB565ToARGBRow(src_rgb565, row, width);
1353 RGB565ToARGBRow(src_rgb565 + src_stride_rgb565, row + kMaxStride, width);
1357 src_rgb565 += src_stride_rgb565 * 2;
1363 RGB565ToARGBRow_C(src_rgb565, row, width);
H A Drow_win.cc324 void RGB565ToARGBRow_SSE2(const uint8* src_rgb565, uint8* dst_argb, argument
341 mov eax, [esp + 4] // src_rgb565

Completed in 332 milliseconds