Lines Matching refs:Y
28 static void _YUV420SToRGB565(const uint8_t* Y, in _YUV420SToRGB565() argument
43 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
44 Y++; rgb++; in _YUV420SToRGB565()
45 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
46 Y++; rgb++; in _YUV420SToRGB565()
58 static void _YUV420SToRGB32(const uint8_t* Y, in _YUV420SToRGB32() argument
73 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
74 Y++; rgb++; in _YUV420SToRGB32()
75 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
76 Y++; rgb++; in _YUV420SToRGB32()
91 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB565() local
92 const uint8_t* U = Y + pix_total; in YV12ToRGB565()
94 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), width, height); in YV12ToRGB565()
100 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB32() local
101 const uint8_t* V = Y + pix_total; in YV12ToRGB32()
103 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YV12ToRGB32()
109 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yu12); in YU12ToRGB32() local
110 const uint8_t* U = Y + pix_total; in YU12ToRGB32()
112 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YU12ToRGB32()
118 static void _NVXXToRGB565(const uint8_t* Y, in _NVXXToRGB565() argument
125 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height); in _NVXXToRGB565()
131 static void _NVXXToRGB32(const uint8_t* Y, in _NVXXToRGB32() argument
138 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height); in _NVXXToRGB32()