Home
last modified time | relevance | path

Searched refs:dst_raw (Results 1 – 5 of 5) sorted by relevance

/external/skia/legacy/src/opts/
DSkBlitRow_opts_arm.cpp512 uint8x8_t src_raw, dst_raw, dst_final; in S32A_Opaque_BlitRow32_neon_test_alpha() local
536 dst_raw = vreinterpret_u8_u32(vld1_u32(dst)); in S32A_Opaque_BlitRow32_neon_test_alpha()
547 dst_wide = vmovl_u8(dst_raw); in S32A_Opaque_BlitRow32_neon_test_alpha()
682 uint8x8_t src_raw, dst_raw, dst_final; in S32A_Opaque_BlitRow32_neon() local
692 dst_raw = vreinterpret_u8_u32(vld1_u32(dst)); in S32A_Opaque_BlitRow32_neon()
716 dst_wide = vmovl_u8(dst_raw); in S32A_Opaque_BlitRow32_neon()
1356 uint8x8_t src_raw, dst_raw, dst_final; in S32_Blend_BlitRow32_neon() local
1366 dst_raw = vreinterpret_u8_u32(vld1_u32(dst)); in S32_Blend_BlitRow32_neon()
1367 dst_wide = vmovl_u8(dst_raw); in S32_Blend_BlitRow32_neon()
/external/skia/src/opts/
DSkBlitRow_opts_arm_neon.cpp426 uint8x8_t src_raw, dst_raw, dst_final; in S32A_Opaque_BlitRow32_neon() local
436 dst_raw = vreinterpret_u8_u32(vld1_u32(dst)); in S32A_Opaque_BlitRow32_neon()
460 dst_wide = vmovl_u8(dst_raw); in S32A_Opaque_BlitRow32_neon()
549 uint8x8_t src_raw, dst_raw, dst_final; in S32_Blend_BlitRow32_neon() local
559 dst_raw = vreinterpret_u8_u32(vld1_u32(dst)); in S32_Blend_BlitRow32_neon()
560 dst_wide = vmovl_u8(dst_raw); in S32_Blend_BlitRow32_neon()
/external/libyuv/files/source/
Drow_neon.cc676 void ARGBToRAWRow_NEON(const uint8* src_argb, uint8* dst_raw, int pix) { in ARGBToRAWRow_NEON() argument
686 "+r"(dst_raw), // %1 in ARGBToRAWRow_NEON()
Dconvert_from.cc956 uint8* dst_raw, int dst_stride_raw, in I420ToRAW() argument
959 !dst_raw || in I420ToRAW()
966 dst_raw = dst_raw + (height - 1) * dst_stride_raw; in I420ToRAW()
986 if (IS_ALIGNED(dst_raw, 16) && IS_ALIGNED(dst_stride_raw, 16)) { in I420ToRAW()
994 I422ToRAWRow(src_y, src_u, src_v, dst_raw, width); in I420ToRAW()
995 dst_raw += dst_stride_raw; in I420ToRAW()
Dplanar_functions.cc675 uint8* dst_raw, int dst_stride_raw, in ARGBToRAW() argument
677 if (!src_argb || !dst_raw || width <= 0 || height == 0) { in ARGBToRAW()
694 IS_ALIGNED(dst_raw, 16) && IS_ALIGNED(dst_stride_raw, 16)) { in ARGBToRAW()
711 ARGBToRAWRow(src_argb, dst_raw, width); in ARGBToRAW()
713 dst_raw += dst_stride_raw; in ARGBToRAW()