Home
last modified time | relevance | path

Searched refs:dst_rgb24 (Results 1 – 12 of 12) 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/libvpx/libvpx/third_party/libyuv/source/
Dconvert_from.cc702 uint8* dst_rgb24, int dst_stride_rgb24, in I420ToRGB24() argument
710 if (!src_y || !src_u || !src_v || !dst_rgb24 || in I420ToRGB24()
717 dst_rgb24 = dst_rgb24 + (height - 1) * dst_stride_rgb24; in I420ToRGB24()
737 I422ToRGB24Row(src_y, src_u, src_v, dst_rgb24, width); in I420ToRGB24()
738 dst_rgb24 += dst_stride_rgb24; in I420ToRGB24()
Drow_neon.cc335 uint8* dst_rgb24, in I422ToRGB24Row_NEON() argument
356 "+r"(dst_rgb24), // %3 in I422ToRGB24Row_NEON()
1103 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1114 "+r"(dst_rgb24), // %1 in ARGBToRGB24Row_NEON()
Drow_neon64.cc348 uint8* dst_rgb24, in I422ToRGB24Row_NEON() argument
369 "+r"(dst_rgb24), // %3 in I422ToRGB24Row_NEON()
1168 void ARGBToRGB24Row_NEON(const uint8* src_argb, uint8* dst_rgb24, int pix) { in ARGBToRGB24Row_NEON() argument
1179 "+r"(dst_rgb24), // %1 in ARGBToRGB24Row_NEON()
Dconvert_from_argb.cc737 uint8* dst_rgb24, int dst_stride_rgb24, in ARGBToRGB24() argument
742 if (!src_argb || !dst_rgb24 || width <= 0 || height == 0) { in ARGBToRGB24()
774 ARGBToRGB24Row(src_argb, dst_rgb24, width); in ARGBToRGB24()
776 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.cc2445 uint8* dst_rgb24, in I422ToRGB24Row_SSSE3() argument
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert_from_argb.h49 uint8* dst_rgb24, int dst_stride_rgb24,
Drow.h510 uint8* dst_rgb24,
965 uint8* dst_rgb24,
1066 uint8* dst_rgb24,
/external/libyuv/files/include/libyuv/
Dplanar_functions.h105 uint8* dst_rgb24, int dst_stride_rgb24,