/external/libyuv/files/source/ |
D | row_dspr2.cc | 1223 void BGRAToUVRow_DSPR2(const uint8* src_rgb0, in BGRAToUVRow_DSPR2() argument 1228 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in BGRAToUVRow_DSPR2() 1280 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in BGRAToUVRow_DSPR2() 1345 void ABGRToUVRow_DSPR2(const uint8* src_rgb0, in ABGRToUVRow_DSPR2() argument 1350 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in ABGRToUVRow_DSPR2() 1403 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in ABGRToUVRow_DSPR2() 1525 void RGBAToUVRow_DSPR2(const uint8* src_rgb0, in RGBAToUVRow_DSPR2() argument 1530 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in RGBAToUVRow_DSPR2() 1583 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in RGBAToUVRow_DSPR2() 1648 void ARGBToUVRow_DSPR2(const uint8* src_rgb0, in ARGBToUVRow_DSPR2() argument [all …]
|
D | row_mmi.cc | 685 void ARGBToUVRow_MMI(const uint8_t* src_rgb0, in ARGBToUVRow_MMI() argument 902 : [src_rgb0] "r"(src_rgb0), [src_stride_rgb] "r"(src_stride_rgb), in ARGBToUVRow_MMI() 989 void BGRAToUVRow_MMI(const uint8_t* src_rgb0, in BGRAToUVRow_MMI() argument 1206 : [src_rgb0] "r"(src_rgb0), [src_stride_rgb] "r"(src_stride_rgb), in BGRAToUVRow_MMI() 1293 void ABGRToUVRow_MMI(const uint8_t* src_rgb0, in ABGRToUVRow_MMI() argument 1510 : [src_rgb0] "r"(src_rgb0), [src_stride_rgb] "r"(src_stride_rgb), in ABGRToUVRow_MMI() 1597 void RGBAToUVRow_MMI(const uint8_t* src_rgb0, in RGBAToUVRow_MMI() argument 1814 : [src_rgb0] "r"(src_rgb0), [src_stride_rgb] "r"(src_stride_rgb), in RGBAToUVRow_MMI() 1905 void RGB24ToUVRow_MMI(const uint8_t* src_rgb0, in RGB24ToUVRow_MMI() argument 2138 : [src_rgb0] "r"(src_rgb0), [src_stride_rgb] "r"(src_stride_rgb), in RGB24ToUVRow_MMI() [all …]
|
D | row_common.cc | 405 void NAME##ToUVRow_C(const uint8_t* src_rgb0, int src_stride_rgb, \ 407 const uint8_t* src_rgb1 = src_rgb0 + src_stride_rgb; \ 410 uint8_t ab = (src_rgb0[B] + src_rgb0[B + BPP] + src_rgb1[B] + \ 413 uint8_t ag = (src_rgb0[G] + src_rgb0[G + BPP] + src_rgb1[G] + \ 416 uint8_t ar = (src_rgb0[R] + src_rgb0[R + BPP] + src_rgb1[R] + \ 421 src_rgb0 += BPP * 2; \ 427 uint8_t ab = (src_rgb0[B] + src_rgb1[B]) >> 1; \ 428 uint8_t ag = (src_rgb0[G] + src_rgb1[G]) >> 1; \ 429 uint8_t ar = (src_rgb0[R] + src_rgb1[R]) >> 1; \ 491 void NAME##ToUVJRow_C(const uint8_t* src_rgb0, int src_stride_rgb, \ [all …]
|
D | row_msa.cc | 2020 void RGB24ToUVRow_MSA(const uint8_t* src_rgb0, in RGB24ToUVRow_MSA() argument 2026 const uint8_t* s = src_rgb0; in RGB24ToUVRow_MSA() 2027 const uint8_t* t = src_rgb0 + src_stride_rgb; in RGB24ToUVRow_MSA() 2125 void RAWToUVRow_MSA(const uint8_t* src_rgb0, in RAWToUVRow_MSA() argument 2131 const uint8_t* s = src_rgb0; in RAWToUVRow_MSA() 2132 const uint8_t* t = src_rgb0 + src_stride_rgb; in RAWToUVRow_MSA() 2499 void ARGBToUVJRow_MSA(const uint8_t* src_rgb0, in ARGBToUVJRow_MSA() argument 2505 const uint8_t* s = src_rgb0; in ARGBToUVJRow_MSA() 2506 const uint8_t* t = src_rgb0 + src_stride_rgb; in ARGBToUVJRow_MSA() 2569 void BGRAToUVRow_MSA(const uint8_t* src_rgb0, in BGRAToUVRow_MSA() argument [all …]
|
/external/libaom/libaom/third_party/libyuv/source/ |
D | row_common.cc | 310 void NAME ## ToUVRow_C(const uint8* src_rgb0, int src_stride_rgb, \ 312 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; \ 315 uint8 ab = (src_rgb0[B] + src_rgb0[B + BPP] + \ 317 uint8 ag = (src_rgb0[G] + src_rgb0[G + BPP] + \ 319 uint8 ar = (src_rgb0[R] + src_rgb0[R + BPP] + \ 323 src_rgb0 += BPP * 2; \ 329 uint8 ab = (src_rgb0[B] + src_rgb1[B]) >> 1; \ 330 uint8 ag = (src_rgb0[G] + src_rgb1[G]) >> 1; \ 331 uint8 ar = (src_rgb0[R] + src_rgb1[R]) >> 1; \ 392 void NAME ## ToUVJRow_C(const uint8* src_rgb0, int src_stride_rgb, \ [all …]
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row_common.cc | 405 void NAME##ToUVRow_C(const uint8_t* src_rgb0, int src_stride_rgb, \ 407 const uint8_t* src_rgb1 = src_rgb0 + src_stride_rgb; \ 410 uint8_t ab = (src_rgb0[B] + src_rgb0[B + BPP] + src_rgb1[B] + \ 413 uint8_t ag = (src_rgb0[G] + src_rgb0[G + BPP] + src_rgb1[G] + \ 416 uint8_t ar = (src_rgb0[R] + src_rgb0[R + BPP] + src_rgb1[R] + \ 421 src_rgb0 += BPP * 2; \ 427 uint8_t ab = (src_rgb0[B] + src_rgb1[B]) >> 1; \ 428 uint8_t ag = (src_rgb0[G] + src_rgb1[G]) >> 1; \ 429 uint8_t ar = (src_rgb0[R] + src_rgb1[R]) >> 1; \ 491 void NAME##ToUVJRow_C(const uint8_t* src_rgb0, int src_stride_rgb, \ [all …]
|
D | row_msa.cc | 2020 void RGB24ToUVRow_MSA(const uint8_t* src_rgb0, in RGB24ToUVRow_MSA() argument 2026 const uint8_t* s = src_rgb0; in RGB24ToUVRow_MSA() 2027 const uint8_t* t = src_rgb0 + src_stride_rgb; in RGB24ToUVRow_MSA() 2125 void RAWToUVRow_MSA(const uint8_t* src_rgb0, in RAWToUVRow_MSA() argument 2131 const uint8_t* s = src_rgb0; in RAWToUVRow_MSA() 2132 const uint8_t* t = src_rgb0 + src_stride_rgb; in RAWToUVRow_MSA() 2499 void ARGBToUVJRow_MSA(const uint8_t* src_rgb0, in ARGBToUVJRow_MSA() argument 2505 const uint8_t* s = src_rgb0; in ARGBToUVJRow_MSA() 2506 const uint8_t* t = src_rgb0 + src_stride_rgb; in ARGBToUVJRow_MSA() 2569 void BGRAToUVRow_MSA(const uint8_t* src_rgb0, in BGRAToUVRow_MSA() argument [all …]
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 1001 void ARGBToUVJRow_MSA(const uint8_t* src_rgb0, 1006 void BGRAToUVRow_MSA(const uint8_t* src_rgb0, 1011 void ABGRToUVRow_MSA(const uint8_t* src_rgb0, 1016 void RGBAToUVRow_MSA(const uint8_t* src_rgb0, 1021 void RGB24ToUVRow_MSA(const uint8_t* src_rgb0, 1026 void RAWToUVRow_MSA(const uint8_t* src_rgb0, 1041 void ARGBToUVJRow_MMI(const uint8_t* src_rgb0, 1046 void BGRAToUVRow_MMI(const uint8_t* src_rgb0, 1051 void ABGRToUVRow_MMI(const uint8_t* src_rgb0, 1056 void RGBAToUVRow_MMI(const uint8_t* src_rgb0, [all …]
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 904 void ARGBToUVJRow_MSA(const uint8_t* src_rgb0, 909 void BGRAToUVRow_MSA(const uint8_t* src_rgb0, 914 void ABGRToUVRow_MSA(const uint8_t* src_rgb0, 919 void RGBAToUVRow_MSA(const uint8_t* src_rgb0, 924 void RGB24ToUVRow_MSA(const uint8_t* src_rgb0, 929 void RAWToUVRow_MSA(const uint8_t* src_rgb0, 1179 void ARGBToUVRow_C(const uint8_t* src_rgb0, 1184 void ARGBToUVJRow_C(const uint8_t* src_rgb0, 1189 void ARGBToUVRow_C(const uint8_t* src_rgb0, 1194 void ARGBToUVJRow_C(const uint8_t* src_rgb0, [all …]
|