Lines Matching refs:dst_rgb565
721 uint8* dst_rgb565, int dst_stride_rgb565, in ARGBToRGB565() argument
723 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) { in ARGBToRGB565()
746 ARGBToRGB565Row(src_argb, dst_rgb565, width); in ARGBToRGB565()
748 dst_rgb565 += dst_stride_rgb565; in ARGBToRGB565()
828 uint8* dst_rgb565, int dst_stride_rgb565, in NV12ToRGB565() argument
830 if (!src_y || !src_uv || !dst_rgb565 || width <= 0 || height == 0) { in NV12ToRGB565()
836 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in NV12ToRGB565()
865 ARGBToRGB565Row(row, dst_rgb565, width); in NV12ToRGB565()
866 dst_rgb565 += dst_stride_rgb565; in NV12ToRGB565()
879 uint8* dst_rgb565, int dst_stride_rgb565, in NV21ToRGB565() argument
881 if (!src_y || !src_vu || !dst_rgb565 || width <= 0 || height == 0) { in NV21ToRGB565()
887 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565; in NV21ToRGB565()
911 ARGBToRGB565Row(row, dst_rgb565, width); in NV21ToRGB565()
912 dst_rgb565 += dst_stride_rgb565; in NV21ToRGB565()