• Home
  • Raw
  • Download

Lines Matching refs:uint8_t

30 static void _YUV420SToRGB565(const uint8_t* Y,  in _YUV420SToRGB565()
31 const uint8_t* U, in _YUV420SToRGB565()
32 const uint8_t* V, in _YUV420SToRGB565()
40 const uint8_t* Y_pos = Y; in _YUV420SToRGB565()
41 const uint8_t* U_pos = U; in _YUV420SToRGB565()
42 const uint8_t* V_pos = V; in _YUV420SToRGB565()
49 const uint8_t nU = *U; in _YUV420SToRGB565()
50 const uint8_t nV = *V; in _YUV420SToRGB565()
59 static void _YUV420SToRGB32(const uint8_t* Y, in _YUV420SToRGB32()
60 const uint8_t* U, in _YUV420SToRGB32()
61 const uint8_t* V, in _YUV420SToRGB32()
69 const uint8_t* Y_pos = Y; in _YUV420SToRGB32()
70 const uint8_t* U_pos = U; in _YUV420SToRGB32()
71 const uint8_t* V_pos = V; in _YUV420SToRGB32()
78 const uint8_t nU = *U; in _YUV420SToRGB32()
79 const uint8_t nV = *V; in _YUV420SToRGB32()
101 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB565()
102 const uint8_t* U = Y + y_stride * height; in YV12ToRGB565()
103 const uint8_t* V = U + uv_stride * (height / 2); in YV12ToRGB565()
113 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yv12); in YV12ToRGB32()
114 const uint8_t* V = Y + y_stride * height; in YV12ToRGB32()
115 const uint8_t* U = V + uv_stride * (height / 2); in YV12ToRGB32()
125 const uint8_t* Y = reinterpret_cast<const uint8_t*>(yu12); in YU12ToRGB32()
126 const uint8_t* U = Y + y_stride * height; in YU12ToRGB32()
127 const uint8_t* V = U + uv_stride * (height / 2); in YU12ToRGB32()
135 static void _NVXXToRGB565(const uint8_t* Y, in _NVXXToRGB565()
136 const uint8_t* U, in _NVXXToRGB565()
137 const uint8_t* V, in _NVXXToRGB565()
154 static void _NVXXToRGB32(const uint8_t* Y, in _NVXXToRGB32()
155 const uint8_t* U, in _NVXXToRGB32()
156 const uint8_t* V, in _NVXXToRGB32()
173 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB565()
181 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB32()
189 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB565()
197 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB32()