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

/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.cpp426 uint8x8_t src_raw, dst_raw, dst_final; local
443 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
460 dst_wide = vmovl_u8(dst_raw);
534 uint8x8_t src_raw, dst_raw, dst_final; local
558 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
569 dst_wide = vmovl_u8(dst_raw);
714 uint8x8_t src_raw, dst_raw, dst_final; local
724 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
725 dst_wide = vmovl_u8(dst_raw);
/external/skia/src/opts/
H A DSkBlitRow_opts_arm_neon.cpp426 uint8x8_t src_raw, dst_raw, dst_final; local
443 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
460 dst_wide = vmovl_u8(dst_raw);
534 uint8x8_t src_raw, dst_raw, dst_final; local
558 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
569 dst_wide = vmovl_u8(dst_raw);
714 uint8x8_t src_raw, dst_raw, dst_final; local
724 dst_raw = vreinterpret_u8_u32(vld1_u32(dst));
725 dst_wide = vmovl_u8(dst_raw);

Completed in 134 milliseconds