Searched defs:dst_rgb (Results 1 - 7 of 7) sorted by relevance

/external/libyuv/files/source/
H A Dconvert_from.cc1010 uint8* dst_rgb, int dst_stride_rgb,
1013 !dst_rgb ||
1020 dst_rgb = dst_rgb + (height - 1) * dst_stride_rgb;
1039 void (*ARGBToRGB565Row)(const uint8* src_rgb, uint8* dst_rgb, int pix) =
1054 ARGBToRGB565Row(row, dst_rgb, width);
1055 dst_rgb += dst_stride_rgb;
1099 void (*ARGBToARGB1555Row)(const uint8* src_argb, uint8* dst_rgb, int pix) =
1159 void (*ARGBToARGB4444Row)(const uint8* src_argb, uint8* dst_rgb, int pix) =
1007 I420ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_rgb, int dst_stride_rgb, int width, int height) argument
H A Drow_common.cc142 void ARGBToRGBARow_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
148 dst_rgb[0] = a;
149 dst_rgb[1] = b;
150 dst_rgb[2] = g;
151 dst_rgb[3] = r;
152 dst_rgb += 4;
157 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
162 dst_rgb[0] = b;
163 dst_rgb[1] = g;
164 dst_rgb[
170 ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
184 ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
205 ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
231 ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
[all...]
H A Drow_win.cc468 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
471 mov edx, [esp + 8] // dst_rgb
507 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
510 mov edx, [esp + 8] // dst_rgb
546 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
549 mov edx, [esp + 8] // dst_rgb
585 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
588 mov edx, [esp + 8] // dst_rgb
627 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
630 mov edx, [esp + 8] // dst_rgb
[all...]
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drow_neon.cc1350 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, argument
1366 : "+r"(dst_rgb) // %0
H A Drow_neon64.cc1365 void ARGBToRGB565DitherRow_NEON(const uint8* src_argb, uint8* dst_rgb, argument
1380 : "+r"(dst_rgb) // %0
H A Drow_common.cc152 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
158 dst_rgb[0] = b;
159 dst_rgb[1] = g;
160 dst_rgb[2] = r;
161 dst_rgb += 3;
166 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) { argument
172 dst_rgb[0] = r;
173 dst_rgb[1] = g;
174 dst_rgb[2] = b;
175 dst_rgb
180 ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
210 ARGBToRGB565DitherRow_C(const uint8* src_argb, uint8* dst_rgb, const uint32 dither4, int width) argument
236 ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
263 ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
[all...]
H A Drow_win.cc757 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
760 mov edx, [esp + 8] // dst_rgb
795 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
798 mov edx, [esp + 8] // dst_rgb
834 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
837 mov edx, [esp + 8] // dst_rgb
872 void ARGBToRGB565DitherRow_SSE2(const uint8* src_argb, uint8* dst_rgb, argument
877 mov edx, [esp + 8] // dst_rgb
918 void ARGBToRGB565DitherRow_AVX2(const uint8* src_argb, uint8* dst_rgb, argument
922 mov edx, [esp + 8] // dst_rgb
961 ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) argument
1002 ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) argument
1032 ARGBToRGB565Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int pix) argument
1069 ARGBToARGB1555Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int pix) argument
1109 ARGBToARGB4444Row_AVX2(const uint8* src_argb, uint8* dst_rgb, int pix) argument
[all...]

Completed in 253 milliseconds