Lines Matching refs:U
524 unsigned int Y, U, V; in csc_RGB565_to_YUV420P() local
555 U = ((-38 * R) - (74 * G) + (112 * B) + 128); in csc_RGB565_to_YUV420P()
556 U = U >> 8; in csc_RGB565_to_YUV420P()
557 U += 128; in csc_RGB565_to_YUV420P()
562 pDstU[uIndex++] = (unsigned char)U; in csc_RGB565_to_YUV420P()
598 unsigned int Y, U, V; in csc_RGB565_to_YUV420SP() local
628 U = ((-38 * R) - (74 * G) + (112 * B) + 128); in csc_RGB565_to_YUV420SP()
629 U = U >> 8; in csc_RGB565_to_YUV420SP()
630 U += 128; in csc_RGB565_to_YUV420SP()
635 pDstUV[uvIndex++] = (unsigned char)U; in csc_RGB565_to_YUV420SP()
675 unsigned int Y, U, V; in csc_ARGB8888_to_YUV420P() local
705 U = ((-38 * R) - (74 * G) + (112 * B) + 128); in csc_ARGB8888_to_YUV420P()
706 U = U >> 8; in csc_ARGB8888_to_YUV420P()
707 U += 128; in csc_ARGB8888_to_YUV420P()
712 pDstU[uIndex++] = (unsigned char)U; in csc_ARGB8888_to_YUV420P()
749 unsigned int Y, U, V; in csc_ARGB8888_to_YUV420SP() local
776 U = ((-38 * R) - (74 * G) + (112 * B) + 128); in csc_ARGB8888_to_YUV420SP()
777 U = U >> 8; in csc_ARGB8888_to_YUV420SP()
778 U += 128; in csc_ARGB8888_to_YUV420SP()
783 pDstUV[uvIndex++] = (unsigned char)U; in csc_ARGB8888_to_YUV420SP()