Home
last modified time | relevance | path

Searched refs:dst_rgb24 (Results 1 – 11 of 11) sorted by relevance

/external/libyuv/files/source/
Drow_neon.cc658 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
667 "+r"(dst_rgb24), // %1 in ARGBToRGB24Row_NEON()
Dconvert_from.cc902 uint8* dst_rgb24, int dst_stride_rgb24, in I420ToRGB24() argument
905 !dst_rgb24 || in I420ToRGB24()
912 dst_rgb24 = dst_rgb24 + (height - 1) * dst_stride_rgb24; in I420ToRGB24()
932 if (IS_ALIGNED(dst_rgb24, 16) && IS_ALIGNED(dst_stride_rgb24, 16)) { in I420ToRGB24()
940 I422ToRGB24Row(src_y, src_u, src_v, dst_rgb24, width); in I420ToRGB24()
941 dst_rgb24 += dst_stride_rgb24; in I420ToRGB24()
Dplanar_functions.cc629 uint8* dst_rgb24, int dst_stride_rgb24, in ARGBToRGB24() argument
631 if (!src_argb || !dst_rgb24 || width <= 0 || height == 0) { in ARGBToRGB24()
648 IS_ALIGNED(dst_rgb24, 16) && IS_ALIGNED(dst_stride_rgb24, 16)) { in ARGBToRGB24()
665 ARGBToRGB24Row(src_argb, dst_rgb24, width); in ARGBToRGB24()
667 dst_rgb24 += dst_stride_rgb24; in ARGBToRGB24()
/external/chromium_org/third_party/libyuv/source/
Drow_neon.cc302 uint8* dst_rgb24, in I422ToRGB24Row_NEON() argument
320 "+r"(dst_rgb24), // %3 in I422ToRGB24Row_NEON()
1004 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1013 "+r"(dst_rgb24), // %1 in ARGBToRGB24Row_NEON()
Dconvert_from.cc693 uint8* dst_rgb24, int dst_stride_rgb24, in I420ToRGB24() argument
695 if (!src_y || !src_u || !src_v || !dst_rgb24 || in I420ToRGB24()
702 dst_rgb24 = dst_rgb24 + (height - 1) * dst_stride_rgb24; in I420ToRGB24()
727 I422ToRGB24Row(src_y, src_u, src_v, dst_rgb24, width); in I420ToRGB24()
728 dst_rgb24 += dst_stride_rgb24; in I420ToRGB24()
Dconvert_from_argb.cc727 uint8* dst_rgb24, int dst_stride_rgb24, in ARGBToRGB24() argument
729 if (!src_argb || !dst_rgb24 || width <= 0 || height == 0) { in ARGBToRGB24()
763 ARGBToRGB24Row(src_argb, dst_rgb24, width); in ARGBToRGB24()
765 dst_rgb24 += dst_stride_rgb24; in ARGBToRGB24()
Drow_posix.cc2226 uint8* dst_rgb24, in I422ToRGB24Row_SSSE3() argument
2256 "movq %%xmm0," MEMACCESS([dst_rgb24]) "\n" in I422ToRGB24Row_SSSE3()
2257 "movdqu %%xmm1," MEMACCESS2(0x8,[dst_rgb24]) "\n" in I422ToRGB24Row_SSSE3()
2258 "lea " MEMLEA(0x18,[dst_rgb24]) ",%[dst_rgb24] \n" in I422ToRGB24Row_SSSE3()
2264 [dst_rgb24]"+r"(dst_rgb24), // %[dst_rgb24] in I422ToRGB24Row_SSSE3()
Drow_win.cc2326 uint8* dst_rgb24, in I422ToRGB24Row_SSSE3() argument
/external/chromium_org/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h51 uint8* dst_rgb24, int dst_stride_rgb24,
Drow.h482 uint8* dst_rgb24,
937 uint8* dst_rgb24,
1038 uint8* dst_rgb24,
/external/libyuv/files/include/libyuv/
Dplanar_functions.h105 uint8* dst_rgb24, int dst_stride_rgb24,