Searched defs:dst_raw (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert_from_argb.cc802 uint8* dst_raw, int dst_stride_raw,
807 if (!src_argb || !dst_raw || width <= 0 || height == 0) {
839 ARGBToRAWRow(src_argb, dst_raw, width);
841 dst_raw += dst_stride_raw;
801 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
H A Dconvert_from.cc753 uint8* dst_raw, int dst_stride_raw,
761 if (!src_y || !src_u || !src_v || !dst_raw ||
768 dst_raw = dst_raw + (height - 1) * dst_stride_raw;
788 I422ToRAWRow(src_y, src_u, src_v, dst_raw, width);
789 dst_raw += dst_stride_raw;
750 I420ToRAW(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_raw, int dst_stride_raw, int width, int height) argument
H A Drow_neon.cc368 uint8* dst_raw,
390 "+r"(dst_raw), // %3
1121 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { argument
1133 "+r"(dst_raw), // %1
365 I422ToRAWRow_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_raw, int width) argument
H A Drow_neon64.cc383 uint8* dst_raw,
405 "+r"(dst_raw), // %3
1187 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { argument
1200 "+r"(dst_raw), // %1
380 I422ToRAWRow_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_raw, int width) argument
H A Drow_posix.cc2284 uint8* dst_raw,
2314 "movq %%xmm0," MEMACCESS([dst_raw]) " \n"
2315 "movdqu %%xmm1," MEMACCESS2(0x8,[dst_raw]) "\n"
2316 "lea " MEMLEA(0x18,[dst_raw]) ",%[dst_raw] \n"
2322 [dst_raw]"+r"(dst_raw), // %[dst_raw]
2281 I422ToRAWRow_SSSE3(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* dst_raw, int width) argument
H A Drow_win.cc2491 uint8* dst_raw,
2488 I422ToRAWRow_SSSE3(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* dst_raw, int width) argument
/external/chromium_org/third_party/libyuv/source/
H A Dconvert_from_argb.cc784 uint8* dst_raw, int dst_stride_raw,
789 if (!src_argb || !dst_raw || width <= 0 || height == 0) {
821 ARGBToRAWRow(src_argb, dst_raw, width);
823 dst_raw += dst_stride_raw;
783 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
H A Dconvert_from.cc753 uint8* dst_raw, int dst_stride_raw,
761 if (!src_y || !src_u || !src_v || !dst_raw ||
768 dst_raw = dst_raw + (height - 1) * dst_stride_raw;
788 I422ToRAWRow(src_y, src_u, src_v, dst_raw, width);
789 dst_raw += dst_stride_raw;
750 I420ToRAW(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_raw, int dst_stride_raw, int width, int height) argument
H A Drow_neon.cc368 uint8* dst_raw,
390 "+r"(dst_raw), // %3
1122 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { argument
1134 "+r"(dst_raw), // %1
365 I422ToRAWRow_NEON(const uint8* src_y, const uint8* src_u, const uint8* src_v, uint8* dst_raw, int width) argument
H A Drow_posix.cc2284 uint8* dst_raw,
2314 "movq %%xmm0," MEMACCESS([dst_raw]) " \n"
2315 "movdqu %%xmm1," MEMACCESS2(0x8,[dst_raw]) "\n"
2316 "lea " MEMLEA(0x18,[dst_raw]) ",%[dst_raw] \n"
2322 [dst_raw]"+r"(dst_raw), // %[dst_raw]
2281 I422ToRAWRow_SSSE3(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* dst_raw, int width) argument
H A Drow_win.cc2492 uint8* dst_raw,
2489 I422ToRAWRow_SSSE3(const uint8* y_buf, const uint8* u_buf, const uint8* v_buf, uint8* dst_raw, int width) argument
/external/libyuv/files/source/
H A Drow_neon.cc676 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { argument
686 "+r"(dst_raw), // %1
H A Dconvert_from.cc956 uint8* dst_raw, int dst_stride_raw,
959 !dst_raw ||
966 dst_raw = dst_raw + (height - 1) * dst_stride_raw;
986 if (IS_ALIGNED(dst_raw, 16) && IS_ALIGNED(dst_stride_raw, 16)) {
994 I422ToRAWRow(src_y, src_u, src_v, dst_raw, width);
995 dst_raw += dst_stride_raw;
953 I420ToRAW(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_raw, int dst_stride_raw, int width, int height) argument
H A Dplanar_functions.cc675 uint8* dst_raw, int dst_stride_raw,
677 if (!src_argb || !dst_raw || width <= 0 || height == 0) {
694 IS_ALIGNED(dst_raw, 16) && IS_ALIGNED(dst_stride_raw, 16)) {
711 ARGBToRAWRow(src_argb, dst_raw, width);
713 dst_raw += dst_stride_raw;
674 ARGBToRAW(const uint8* src_argb, int src_stride_argb, uint8* dst_raw, int dst_stride_raw, int width, int height) argument
/external/chromium_org/third_party/skia/src/opts/
H A DSkBlitRow_opts_arm_neon.cpp756 uint8x8_t src_raw, dst_raw, dst_final; local
773 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
790 dst_wide = vmovl_u8(dst_raw);
864 uint8x8_t src_raw, dst_raw, dst_final; local
888 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
899 dst_wide = vmovl_u8(dst_raw);
/external/skia/src/opts/
H A DSkBlitRow_opts_arm_neon.cpp658 uint8x8_t src_raw, dst_raw, dst_final; local
675 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
692 dst_wide = vmovl_u8(dst_raw);
766 uint8x8_t src_raw, dst_raw, dst_final; local
790 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
801 dst_wide = vmovl_u8(dst_raw);

Completed in 305 milliseconds