Lines Matching refs:Y

30 static void _YUV420SToRGB565(const uint8_t* Y,  in _YUV420SToRGB565()  argument
40 const uint8_t* Y_pos = Y; in _YUV420SToRGB565()
45 Y = Y_pos + y_stride * y; in _YUV420SToRGB565()
51 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
52 Y++; rgb++; in _YUV420SToRGB565()
53 *rgb = YUVToRGB565(*Y, nU, nV); in _YUV420SToRGB565()
54 Y++; rgb++; in _YUV420SToRGB565()
59 static void _YUV420SToRGB32(const uint8_t* Y, in _YUV420SToRGB32() argument
69 const uint8_t* Y_pos = Y; in _YUV420SToRGB32()
74 Y = Y_pos + y_stride * y; in _YUV420SToRGB32()
80 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
81 Y++; rgb++; in _YUV420SToRGB32()
82 *rgb = YUVToRGB32(*Y, nU, nV); in _YUV420SToRGB32()
83 Y++; rgb++; in _YUV420SToRGB32()
101 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB565() local
102 const uint8_t* U = Y + y_stride * height; in YV12ToRGB565()
104 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), in YV12ToRGB565()
113 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB32() local
114 const uint8_t* V = Y + y_stride * height; in YV12ToRGB32()
116 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height, in YV12ToRGB32()
125 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yu12); in YU12ToRGB32() local
126 const uint8_t* U = Y + y_stride * height; in YU12ToRGB32()
128 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height, in YU12ToRGB32()
135 static void _NVXXToRGB565(const uint8_t* Y, in _NVXXToRGB565() argument
148 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height, y_stride, uv_stride); in _NVXXToRGB565()
154 static void _NVXXToRGB32(const uint8_t* Y, in _NVXXToRGB32() argument
167 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height, y_stride, uv_stride); in _NVXXToRGB32()