/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 992 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int width); 993 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int width); 994 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width); 995 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width); 996 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width); 998 void ARGBToRGB565DitherRow_C(const uint8* src_argb, uint8* dst_rgb, 1000 void ARGBToRGB565DitherRow_SSE2(const uint8* src_argb, uint8* dst_rgb, 1002 void ARGBToRGB565DitherRow_AVX2(const uint8* src_argb, uint8* dst_rgb, 1005 void ARGBToRGB565Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width); 1006 void ARGBToARGB1555Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width); [all …]
|
D | convert_from_argb.h | 55 uint8* dst_rgb, int dst_stride_rgb,
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 1665 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int width); 1666 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int width); 1667 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width); 1668 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width); 1669 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width); 1672 uint8* dst_rgb, 1676 uint8* dst_rgb, 1680 uint8* dst_rgb, 1684 void ARGBToRGB565Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width); 1685 void ARGBToARGB1555Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width); [all …]
|
D | convert_from_argb.h | 71 uint8* dst_rgb,
|
/external/libyuv/files/source/ |
D | row_common.cc | 168 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_C() argument 174 dst_rgb[0] = b; in ARGBToRGB24Row_C() 175 dst_rgb[1] = g; in ARGBToRGB24Row_C() 176 dst_rgb[2] = r; in ARGBToRGB24Row_C() 177 dst_rgb += 3; in ARGBToRGB24Row_C() 182 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRAWRow_C() argument 188 dst_rgb[0] = r; in ARGBToRAWRow_C() 189 dst_rgb[1] = g; in ARGBToRAWRow_C() 190 dst_rgb[2] = b; in ARGBToRAWRow_C() 191 dst_rgb += 3; in ARGBToRAWRow_C() [all …]
|
D | convert_from_argb.cc | 933 void (*ARGBToRGB24Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToRGB24() 991 void (*ARGBToRAWRow)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToRAW() 1055 void (*ARGBToRGB565DitherRow)(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565Dither() 1122 void (*ARGBToRGB565Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToRGB565() 1188 void (*ARGBToARGB1555Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToARGB1555() 1254 void (*ARGBToARGB4444Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToARGB4444()
|
D | row_msa.cc | 935 void ARGBToRGB24Row_MSA(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_MSA() argument 952 ST_UB2(dst0, dst1, dst_rgb, 16); in ARGBToRGB24Row_MSA() 953 ST_UB(dst2, (dst_rgb + 32)); in ARGBToRGB24Row_MSA() 955 dst_rgb += 48; in ARGBToRGB24Row_MSA() 959 void ARGBToRAWRow_MSA(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRAWRow_MSA() argument 976 ST_UB2(dst0, dst1, dst_rgb, 16); in ARGBToRAWRow_MSA() 977 ST_UB(dst2, (dst_rgb + 32)); in ARGBToRAWRow_MSA() 979 dst_rgb += 48; in ARGBToRAWRow_MSA() 983 void ARGBToRGB565Row_MSA(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB565Row_MSA() argument 1011 ST_UB(dst0, dst_rgb); in ARGBToRGB565Row_MSA() [all …]
|
D | row_neon.cc | 1193 uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument 1209 : "+r"(dst_rgb) // %0 in ARGBToRGB565DitherRow_NEON()
|
D | row_neon64.cc | 1206 uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument 1222 : "+r"(dst_rgb) // %0 in ARGBToRGB565DitherRow_NEON()
|
D | row_win.cc | 722 uint8* dst_rgb, 761 uint8* dst_rgb, 800 uint8* dst_rgb, 838 uint8* dst_rgb, 885 uint8* dst_rgb, 929 uint8* dst_rgb, 971 uint8* dst_rgb, 1002 uint8* dst_rgb, 1040 uint8* dst_rgb, 1081 uint8* dst_rgb,
|
D | convert_from.cc | 916 void (*ARGBToRGB565DitherRow)(const uint8* src_argb, uint8* dst_rgb, in I420ToRGB565Dither()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row_common.cc | 166 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRGB24Row_C() argument 172 dst_rgb[0] = b; in ARGBToRGB24Row_C() 173 dst_rgb[1] = g; in ARGBToRGB24Row_C() 174 dst_rgb[2] = r; in ARGBToRGB24Row_C() 175 dst_rgb += 3; in ARGBToRGB24Row_C() 180 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { in ARGBToRAWRow_C() argument 186 dst_rgb[0] = r; in ARGBToRAWRow_C() 187 dst_rgb[1] = g; in ARGBToRAWRow_C() 188 dst_rgb[2] = b; in ARGBToRAWRow_C() 189 dst_rgb += 3; in ARGBToRAWRow_C() [all …]
|
D | convert_from_argb.cc | 756 void (*ARGBToRGB24Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToRGB24() 804 void (*ARGBToRAWRow)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToRAW() 860 void (*ARGBToRGB565DitherRow)(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565Dither() 913 void (*ARGBToRGB565Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToRGB565() 969 void (*ARGBToARGB1555Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToARGB1555() 1025 void (*ARGBToARGB4444Row)(const uint8* src_argb, uint8* dst_rgb, int width) = in ARGBToARGB4444()
|
D | row_neon.cc | 1213 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument 1228 : "+r"(dst_rgb) // %0 in ARGBToRGB565DitherRow_NEON()
|
D | row_neon64.cc | 1219 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, in ARGBToRGB565DitherRow_NEON() argument 1234 : "+r"(dst_rgb) // %0 in ARGBToRGB565DitherRow_NEON()
|
D | row_win.cc | 752 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int width) { 790 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int width) { 828 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width) { 865 void ARGBToRGB565DitherRow_SSE2(const uint8* src_argb, uint8* dst_rgb, 911 void ARGBToRGB565DitherRow_AVX2(const uint8* src_argb, uint8* dst_rgb, 954 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width) { 995 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int width) { 1025 void ARGBToRGB565Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width) { 1062 void ARGBToARGB1555Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width) { 1102 void ARGBToARGB4444Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int width) {
|
D | convert_from.cc | 802 void (*ARGBToRGB565DitherRow)(const uint8* src_argb, uint8* dst_rgb, in I420ToRGB565Dither()
|