Lines Matching refs:height

36                              int height,  in _YUV420SToRGB565()  argument
44 for (int y = 0; y < height; y++) { in _YUV420SToRGB565()
65 int height, in _YUV420SToRGB32() argument
73 for (int y = 0; y < height; y++) { in _YUV420SToRGB32()
96 void YV12ToRGB565(const void* yv12, void* rgb, int width, int height) in YV12ToRGB565() argument
102 const uint8_t* U = Y + y_stride * height; in YV12ToRGB565()
103 const uint8_t* V = U + uv_stride * (height / 2); in YV12ToRGB565()
105 width, height, y_stride, uv_stride); in YV12ToRGB565()
108 void YV12ToRGB32(const void* yv12, void* rgb, int width, int height) in YV12ToRGB32() argument
114 const uint8_t* V = Y + y_stride * height; in YV12ToRGB32()
115 const uint8_t* U = V + uv_stride * (height / 2); in YV12ToRGB32()
116 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height, in YV12ToRGB32()
120 void YU12ToRGB32(const void* yu12, void* rgb, int width, int height) in YU12ToRGB32() argument
126 const uint8_t* U = Y + y_stride * height; in YU12ToRGB32()
127 const uint8_t* V = U + uv_stride * (height / 2); in YU12ToRGB32()
128 _YUV420SToRGB32(Y, U, V, 1, reinterpret_cast<uint32_t*>(rgb), width, height, in YU12ToRGB32()
140 int height) in _NVXXToRGB565() argument
148 _YUV420SToRGB565(Y, U, V, 2, rgb, width, height, y_stride, uv_stride); in _NVXXToRGB565()
159 int height) in _NVXXToRGB32() argument
167 _YUV420SToRGB32(Y, U, V, 2, rgb, width, height, y_stride, uv_stride); in _NVXXToRGB32()
170 void NV12ToRGB565(const void* nv12, void* rgb, int width, int height) in NV12ToRGB565() argument
172 const int pix_total = width * height; in NV12ToRGB565()
175 reinterpret_cast<uint16_t*>(rgb), width, height); in NV12ToRGB565()
178 void NV12ToRGB32(const void* nv12, void* rgb, int width, int height) in NV12ToRGB32() argument
180 const int pix_total = width * height; in NV12ToRGB32()
183 reinterpret_cast<uint32_t*>(rgb), width, height); in NV12ToRGB32()
186 void NV21ToRGB565(const void* nv21, void* rgb, int width, int height) in NV21ToRGB565() argument
188 const int pix_total = width * height; in NV21ToRGB565()
191 reinterpret_cast<uint16_t*>(rgb), width, height); in NV21ToRGB565()
194 void NV21ToRGB32(const void* nv21, void* rgb, int width, int height) in NV21ToRGB32() argument
196 const int pix_total = width * height; in NV21ToRGB32()
199 reinterpret_cast<uint32_t*>(rgb), width, height); in NV21ToRGB32()