Home | History | Annotate | Download | only in source

Lines Matching refs:uint8

18 extern "C" TALIGN16(const uint8, kMultiplyMaskARGBToI400[16]) = {
22 extern "C" TALIGN16(const uint8, kAdd16[16]) = {
27 extern "C" TALIGN16(const uint8, kShuffleMaskBG24ToARGB[16]) = {
32 extern "C" TALIGN16(const uint8, kShuffleMaskRAWToARGB[16]) = {
36 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) {
69 void BG24ToARGBRow_SSSE3(const uint8* src_bg24, uint8* dst_argb, int pix) {
106 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) {
148 void FastConvertYUVToRGB32Row(const uint8* y_buf, // rdi
149 const uint8* u_buf, // rsi
150 const uint8* v_buf, // rdx
151 uint8* rgb_buf, // rcx
186 void FastConvertYUVToBGRARow(const uint8* y_buf, // rdi
187 const uint8* u_buf, // rsi
188 const uint8* v_buf, // rdx
189 uint8* rgb_buf, // rcx
224 void FastConvertYUVToABGRRow(const uint8* y_buf, // rdi
225 const uint8* u_buf, // rsi
226 const uint8* v_buf, // rdx
227 uint8* rgb_buf, // rcx
262 void FastConvertYUV444ToRGB32Row(const uint8* y_buf, // rdi
263 const uint8* u_buf, // rsi
264 const uint8* v_buf, // rdx
265 uint8* rgb_buf, // rcx
297 void FastConvertYToRGB32Row(const uint8* y_buf, // rdi
298 uint8* rgb_buf, // rcx
325 void FastConvertYUVToRGB32Row(const uint8* y_buf,
326 const uint8* u_buf,
327 const uint8* v_buf,
328 uint8* rgb_buf,
371 void FastConvertYUVToBGRARow(const uint8* y_buf,
372 const uint8* u_buf,
373 const uint8* v_buf,
374 uint8* rgb_buf,
417 void FastConvertYUVToABGRRow(const uint8* y_buf,
418 const uint8* u_buf,
419 const uint8* v_buf,
420 uint8* rgb_buf,
463 void FastConvertYUV444ToRGB32Row(const uint8* y_buf,
464 const uint8* u_buf,
465 const uint8* v_buf,
466 uint8* rgb_buf,
504 void FastConvertYToRGB32Row(const uint8* y_buf,
505 uint8* rgb_buf,
544 static inline void YuvPixel(uint8 y,
545 uint8 u,
546 uint8 v,
547 uint8* rgb_buf,
579 void FastConvertYUVToRGB32Row(const uint8* y_buf,
580 const uint8* u_buf,
581 const uint8* v_buf,
582 uint8* rgb_buf,
585 uint8 u = u_buf[x >> 1];
586 uint8 v = v_buf[x >> 1];
587 uint8 y0 = y_buf[x];
590 uint8 y1 = y_buf[x + 1];
597 void FastConvertYUVToBGRARow(const uint8* y_buf,
598 const uint8* u_buf,
599 const uint8* v_buf,
600 uint8* rgb_buf,
603 uint8 u = u_buf[x >> 1];
604 uint8 v = v_buf[x >> 1];
605 uint8 y0 = y_buf[x];
608 uint8 y1 = y_buf[x + 1];
615 void FastConvertYUVToABGRRow(const uint8* y_buf,
616 const uint8* u_buf,
617 const uint8* v_buf,
618 uint8* rgb_buf,
621 uint8 u = u_buf[x >> 1];
622 uint8 v = v_buf[x >> 1];
623 uint8 y0 = y_buf[x];
626 uint8 y1 = y_buf[x + 1];
633 void FastConvertYUV444ToRGB32Row(const uint8* y_buf,
634 const uint8* u_buf,
635 const uint8* v_buf,
636 uint8* rgb_buf,
639 uint8 u = u_buf[x];
640 uint8 v = v_buf[x];
641 uint8 y = y_buf[x];
647 void FastConvertYToRGB32Row(const uint8* y_buf,
648 uint8* rgb_buf,
651 uint8 y = y_buf[x];