Searched defs:dst_rgb (Results 1 - 8 of 8) 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/qemu/android/camera/
H A Dcamera-format-converters.c1043 void* dst_rgb,
1058 dst_rgb = dst_rgb_fmt->save_rgb(dst_rgb, r, g, b);
1062 if (((uintptr_t)dst_rgb & 1) != 0) dst_rgb = (uint8_t*)dst_rgb + 1;
1040 RGBToRGB(const RGBDesc* src_rgb_fmt, const RGBDesc* dst_rgb_fmt, const void* src_rgb, void* dst_rgb, int width, int height, float r_scale, float g_scale, float b_scale, float exp_comp) argument
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
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
202 ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
229 ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
[all...]
H A Drow_win.cc598 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
601 mov edx, [esp + 8] // dst_rgb
637 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
640 mov edx, [esp + 8] // dst_rgb
676 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
679 mov edx, [esp + 8] // dst_rgb
715 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
718 mov edx, [esp + 8] // dst_rgb
757 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
760 mov edx, [esp + 8] // dst_rgb
[all...]
/external/chromium_org/third_party/libyuv/source/
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
202 ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
229 ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) argument
[all...]
H A Drow_win.cc599 void ARGBToRGB24Row_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
602 mov edx, [esp + 8] // dst_rgb
638 void ARGBToRAWRow_SSSE3(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
641 mov edx, [esp + 8] // dst_rgb
677 void ARGBToRGB565Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
680 mov edx, [esp + 8] // dst_rgb
716 void ARGBToARGB1555Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
719 mov edx, [esp + 8] // dst_rgb
758 void ARGBToARGB4444Row_SSE2(const uint8* src_argb, uint8* dst_rgb, int pix) { argument
761 mov edx, [esp + 8] // dst_rgb
[all...]

Completed in 298 milliseconds