Searched refs:src_rgb1 (Results 1 – 3 of 3) sorted by relevance
/external/libyuv/files/source/ |
D | row_dspr2.cc | 1228 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in BGRAToUVRow_DSPR2() local 1280 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in BGRAToUVRow_DSPR2() 1350 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in ABGRToUVRow_DSPR2() local 1403 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in ABGRToUVRow_DSPR2() 1530 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in RGBAToUVRow_DSPR2() local 1583 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in RGBAToUVRow_DSPR2() 1653 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; in ARGBToUVRow_DSPR2() local 1706 [src_rgb0] "+r"(src_rgb0), [src_rgb1] "+r"(src_rgb1), in ARGBToUVRow_DSPR2()
|
D | row_common.cc | 327 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; \ 330 uint8 ab = (src_rgb0[B] + src_rgb0[B + BPP] + src_rgb1[B] + \ 331 src_rgb1[B + BPP]) >> \ 333 uint8 ag = (src_rgb0[G] + src_rgb0[G + BPP] + src_rgb1[G] + \ 334 src_rgb1[G + BPP]) >> \ 336 uint8 ar = (src_rgb0[R] + src_rgb0[R + BPP] + src_rgb1[R] + \ 337 src_rgb1[R + BPP]) >> \ 342 src_rgb1 += BPP * 2; \ 347 uint8 ab = (src_rgb0[B] + src_rgb1[B]) >> 1; \ 348 uint8 ag = (src_rgb0[G] + src_rgb1[G]) >> 1; \ [all …]
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row_common.cc | 326 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; \ 330 src_rgb1[B] + src_rgb1[B + BPP]) >> 2; \ 332 src_rgb1[G] + src_rgb1[G + BPP]) >> 2; \ 334 src_rgb1[R] + src_rgb1[R + BPP]) >> 2; \ 338 src_rgb1 += 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; \ 408 const uint8* src_rgb1 = src_rgb0 + src_stride_rgb; \ 411 uint8 ab = AVGB(AVGB(src_rgb0[B], src_rgb1[B]), \ [all …]
|