Lines Matching refs:Y

28 static void _YUV420SToRGB565(const uint8_t* Y, const uint8_t* U,  in _YUV420SToRGB565()  argument
38 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
39 Y++; in _YUV420SToRGB565()
41 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
42 Y++; in _YUV420SToRGB565()
55 static void _YUV420SToRGB32(const uint8_t* Y, const uint8_t* U, in _YUV420SToRGB32() argument
65 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
66 Y++; in _YUV420SToRGB32()
68 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
69 Y++; in _YUV420SToRGB32()
84 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB565() local
85 const uint8_t* U = Y + pix_total; in YV12ToRGB565()
87 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), width, height); in YV12ToRGB565()
92 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB32() local
93 const uint8_t* V = Y + pix_total; in YV12ToRGB32()
95 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YV12ToRGB32()
100 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yu12); in YU12ToRGB32() local
101 const uint8_t* U = Y + pix_total; in YU12ToRGB32()
103 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YU12ToRGB32()
109 static void _NVXXToRGB565(const uint8_t* Y, const uint8_t* U, const uint8_t* V, in _NVXXToRGB565() argument
111 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height); in _NVXXToRGB565()
117 static void _NVXXToRGB32(const uint8_t* Y, const uint8_t* U, const uint8_t* V, in _NVXXToRGB32() argument
119 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height); in _NVXXToRGB32()