Lines Matching defs:u
115 #define CALC_RGB16(y, u, v, R, G, B) do { \ argument
135 #define CALC_RGB8(y, u, v, R, G, B) do { \ argument
221 #define CALC_RGBA4444(y, u, v, out0, out1, N, dst) do { \ argument
231 #define CALC_RGB565(y, u, v, out0, out1, N, dst) do { \ argument
247 static void YuvToRgb(int y, int u, int v, uint8_t* const rgb) { in YuvToRgb()
257 static void YuvToBgr(int y, int u, int v, uint8_t* const bgr) { in YuvToBgr()
267 static void YuvToRgb565(int y, int u, int v, uint8_t* const rgb) { in YuvToRgb565()
286 static void YuvToRgba4444(int y, int u, int v, uint8_t* const argb) { in YuvToRgba4444()
305 static void YuvToArgb(uint8_t y, uint8_t u, uint8_t v, uint8_t* const argb) { in YuvToArgb()
310 static void YuvToBgra(uint8_t y, uint8_t u, uint8_t v, uint8_t* const bgra) { in YuvToBgra()
315 static void YuvToRgba(uint8_t y, uint8_t u, uint8_t v, uint8_t* const rgba) { in YuvToRgba()
320 static void YuvToRgbLine(const uint8_t* y, const uint8_t* u, in YuvToRgbLine()
347 static void YuvToBgrLine(const uint8_t* y, const uint8_t* u, in YuvToBgrLine()
374 static void YuvToRgbaLine(const uint8_t* y, const uint8_t* u, in YuvToRgbaLine()
402 static void YuvToBgraLine(const uint8_t* y, const uint8_t* u, in YuvToBgraLine()
430 static void YuvToArgbLine(const uint8_t* y, const uint8_t* u, in YuvToArgbLine()
458 static void YuvToRgba4444Line(const uint8_t* y, const uint8_t* u, in YuvToRgba4444Line()
494 static void YuvToRgb565Line(const uint8_t* y, const uint8_t* u, in YuvToRgb565Line()