Searched defs:dst_rgb565 (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert_from_argb.cc849 uint8* dst_rgb565, int dst_stride_rgb565,
854 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
887 ARGBToRGB565Row(src_argb, dst_rgb565, width);
889 dst_rgb565 += dst_stride_rgb565;
848 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Dconvert_from.cc907 uint8* dst_rgb565, int dst_stride_rgb565,
915 if (!src_y || !src_u || !src_v || !dst_rgb565 ||
922 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
942 I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, width);
943 dst_rgb565 += dst_stride_rgb565;
904 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_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Dplanar_functions.cc976 uint8* dst_rgb565, int dst_stride_rgb565,
983 if (!src_y || !src_uv || !dst_rgb565 ||
990 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
1010 NV12ToRGB565Row(src_y, src_uv, dst_rgb565, width);
1011 dst_rgb565 += dst_stride_rgb565;
1024 uint8* dst_rgb565, int dst_stride_rgb565,
1031 if (!src_y || !src_vu || !dst_rgb565 ||
1038 dst_rgb565 = dst_rgb565
974 NV12ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
1022 NV21ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_vu, int src_stride_vu, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
[all...]
H A Drow_neon.cc414 uint8* dst_rgb565,
436 "+r"(dst_rgb565), // %3
659 uint8* dst_rgb565,
680 "+r"(dst_rgb565), // %2
691 uint8* dst_rgb565,
712 "+r"(dst_rgb565), // %2
1419 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { argument
1431 "+r"(dst_rgb565), // %1
411 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, int width) argument
657 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
689 NV21ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
H A Drow_neon64.cc431 uint8* dst_rgb565,
453 "+r"(dst_rgb565), // %3
690 uint8* dst_rgb565,
711 "+r"(dst_rgb565), // %2
724 uint8* dst_rgb565,
745 "+r"(dst_rgb565), // %2
1513 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { argument
1525 "+r"(dst_rgb565), // %1
428 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, int width) argument
688 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
722 NV21ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
H A Drow_common.cc1160 uint8* dst_rgb565,
1178 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) |
1183 dst_rgb565 += 4; // Advance 2 pixels.
1190 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
1285 uint8* dst_rgb565,
1303 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) |
1307 dst_rgb565 += 4; // Advance 2 pixels.
1314 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
1320 uint8* dst_rgb565,
1338 *(uint32*)(dst_rgb565)
1157 I422ToRGB565Row_C(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, int width) argument
1283 NV12ToRGB565Row_C(const uint8* src_y, const uint8* usrc_v, uint8* dst_rgb565, int width) argument
1318 NV21ToRGB565Row_C(const uint8* src_y, const uint8* vsrc_u, uint8* dst_rgb565, int width) argument
2105 NV12ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
2116 NV21ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_vu, uint8* dst_rgb565, int width) argument
[all...]
/external/chromium_org/third_party/libyuv/source/
H A Dconvert_from_argb.cc831 uint8* dst_rgb565, int dst_stride_rgb565,
836 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
869 ARGBToRGB565Row(src_argb, dst_rgb565, width);
871 dst_rgb565 += dst_stride_rgb565;
830 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Dconvert_from.cc907 uint8* dst_rgb565, int dst_stride_rgb565,
915 if (!src_y || !src_u || !src_v || !dst_rgb565 ||
922 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
942 I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, width);
943 dst_rgb565 += dst_stride_rgb565;
904 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_rgb565, int dst_stride_rgb565, int width, int height) argument
H A Dplanar_functions.cc976 uint8* dst_rgb565, int dst_stride_rgb565,
983 if (!src_y || !src_uv || !dst_rgb565 ||
990 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
1010 NV12ToRGB565Row(src_y, src_uv, dst_rgb565, width);
1011 dst_rgb565 += dst_stride_rgb565;
1024 uint8* dst_rgb565, int dst_stride_rgb565,
1031 if (!src_y || !src_vu || !dst_rgb565 ||
1038 dst_rgb565 = dst_rgb565
974 NV12ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
1022 NV21ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_vu, int src_stride_vu, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
[all...]
H A Drow_neon.cc414 uint8* dst_rgb565,
436 "+r"(dst_rgb565), // %3
660 uint8* dst_rgb565,
681 "+r"(dst_rgb565), // %2
692 uint8* dst_rgb565,
713 "+r"(dst_rgb565), // %2
1420 void ARGBToRGB565Row_NEON(const uint8* src_argb, uint8* dst_rgb565, int pix) { argument
1432 "+r"(dst_rgb565), // %1
411 I422ToRGB565Row_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, int width) argument
658 NV12ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
690 NV21ToRGB565Row_NEON(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
H A Drow_common.cc1160 uint8* dst_rgb565,
1178 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) |
1183 dst_rgb565 += 4; // Advance 2 pixels.
1190 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
1285 uint8* dst_rgb565,
1303 *(uint32*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11) |
1307 dst_rgb565 += 4; // Advance 2 pixels.
1314 *(uint16*)(dst_rgb565) = b0 | (g0 << 5) | (r0 << 11);
1320 uint8* dst_rgb565,
1338 *(uint32*)(dst_rgb565)
1157 I422ToRGB565Row_C(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_rgb565, int width) argument
1283 NV12ToRGB565Row_C(const uint8* src_y, const uint8* usrc_v, uint8* dst_rgb565, int width) argument
1318 NV21ToRGB565Row_C(const uint8* src_y, const uint8* vsrc_u, uint8* dst_rgb565, int width) argument
2105 NV12ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_uv, uint8* dst_rgb565, int width) argument
2116 NV21ToRGB565Row_SSSE3(const uint8* src_y, const uint8* src_vu, uint8* dst_rgb565, int width) argument
[all...]
/external/libyuv/files/source/
H A Dplanar_functions.cc721 uint8* dst_rgb565, int dst_stride_rgb565,
723 if (!src_argb || !dst_rgb565 || width <= 0 || height == 0) {
746 ARGBToRGB565Row(src_argb, dst_rgb565, width);
748 dst_rgb565 += dst_stride_rgb565;
828 uint8* dst_rgb565, int dst_stride_rgb565,
830 if (!src_y || !src_uv || !dst_rgb565 || width <= 0 || height == 0) {
836 dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
865 ARGBToRGB565Row(row, dst_rgb565, width);
866 dst_rgb565
720 ARGBToRGB565(const uint8* src_argb, int src_stride_argb, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
826 NV12ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_uv, int src_stride_uv, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
877 NV21ToRGB565(const uint8* src_y, int src_stride_y, const uint8* src_vu, int src_stride_vu, uint8* dst_rgb565, int dst_stride_rgb565, int width, int height) argument
[all...]

Completed in 169 milliseconds