Home
last modified time | relevance | path

Searched refs:src_rgb0 (Results 1 – 4 of 4) sorted by relevance

/external/libyuv/files/source/
Drow_dspr2.cc1223 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 …]
Drow_common.cc325 void NAME##ToUVRow_C(const uint8* src_rgb0, int src_stride_rgb, \
327 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; \
330 uint8 ab = (src_rgb0[B] + src_rgb0[B + BPP] + src_rgb1[B] + \
333 uint8 ag = (src_rgb0[G] + src_rgb0[G + BPP] + src_rgb1[G] + \
336 uint8 ar = (src_rgb0[R] + src_rgb0[R + BPP] + src_rgb1[R] + \
341 src_rgb0 += BPP * 2; \
347 uint8 ab = (src_rgb0[B] + src_rgb1[B]) >> 1; \
348 uint8 ag = (src_rgb0[G] + src_rgb1[G]) >> 1; \
349 uint8 ar = (src_rgb0[R] + src_rgb1[R]) >> 1; \
411 void NAME##ToUVJRow_C(const uint8* src_rgb0, int src_stride_rgb, \
[all …]
Drow_msa.cc2008 void RGB24ToUVRow_MSA(const uint8* src_rgb0, in RGB24ToUVRow_MSA() argument
2014 const uint8* s = src_rgb0; in RGB24ToUVRow_MSA()
2015 const uint8* t = src_rgb0 + src_stride_rgb; in RGB24ToUVRow_MSA()
2113 void RAWToUVRow_MSA(const uint8* src_rgb0, in RAWToUVRow_MSA() argument
2119 const uint8* s = src_rgb0; in RAWToUVRow_MSA()
2120 const uint8* t = src_rgb0 + src_stride_rgb; in RAWToUVRow_MSA()
2487 void ARGBToUVJRow_MSA(const uint8* src_rgb0, in ARGBToUVJRow_MSA() argument
2493 const uint8* s = src_rgb0; in ARGBToUVJRow_MSA()
2494 const uint8* t = src_rgb0 + src_stride_rgb; in ARGBToUVJRow_MSA()
2557 void BGRAToUVRow_MSA(const uint8* src_rgb0, in BGRAToUVRow_MSA() argument
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_common.cc324 void NAME ## ToUVRow_C(const uint8* src_rgb0, int src_stride_rgb, \
326 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; \
329 uint8 ab = (src_rgb0[B] + src_rgb0[B + BPP] + \
331 uint8 ag = (src_rgb0[G] + src_rgb0[G + BPP] + \
333 uint8 ar = (src_rgb0[R] + src_rgb0[R + BPP] + \
337 src_rgb0 += BPP * 2; \
343 uint8 ab = (src_rgb0[B] + src_rgb1[B]) >> 1; \
344 uint8 ag = (src_rgb0[G] + src_rgb1[G]) >> 1; \
345 uint8 ar = (src_rgb0[R] + src_rgb1[R]) >> 1; \
406 void NAME ## ToUVJRow_C(const uint8* src_rgb0, int src_stride_rgb, \
[all …]