Lines Matching refs:V
30 const uint8_t* V, in _YUV420SToRGB565() argument
37 const uint8_t* V_pos = V; in _YUV420SToRGB565()
40 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB565()
42 const uint8_t nV = *V; in _YUV420SToRGB565()
50 V_pos = V; in _YUV420SToRGB565()
53 V = V_pos; in _YUV420SToRGB565()
60 const uint8_t* V, in _YUV420SToRGB32() argument
67 const uint8_t* V_pos = V; in _YUV420SToRGB32()
70 for (int x = 0; x < width; x += 2, U += dUV, V += dUV) { in _YUV420SToRGB32()
72 const uint8_t nV = *V; in _YUV420SToRGB32()
80 V_pos = V; in _YUV420SToRGB32()
83 V = V_pos; in _YUV420SToRGB32()
93 const uint8_t* V = U + pix_total / 4; in YV12ToRGB565() local
94 _YUV420SToRGB565(Y, U, V, 1, reinterpret_cast<uint16_t*>(rgb), width, height); in YV12ToRGB565()
101 const uint8_t* V = Y + pix_total; in YV12ToRGB32() local
102 const uint8_t* U = V + pix_total / 4; in YV12ToRGB32()
103 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YV12ToRGB32()
111 const uint8_t* V = U + pix_total / 4; in YU12ToRGB32() local
112 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height); in YU12ToRGB32()
120 const uint8_t* V, in _NVXXToRGB565() argument
125 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height); in _NVXXToRGB565()
133 const uint8_t* V, in _NVXXToRGB32() argument
138 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height); in _NVXXToRGB32()