/external/chromium_org/third_party/skia/src/opts/ |
SkBlitRow_opts_arm_neon.cpp | 502 uint8x8_t src_raw, dst_raw, dst_final; local 513 src_raw = vreinterpret_u8_u32(vld1_u32(src)); 532 alpha_narrow = vtbl1_u8(src_raw, alpha_mask); 543 dst_final = vadd_u8(src_raw, dst_cooked); 610 uint8x8_t src_raw, dst_raw, dst_final; local 630 src_raw = vreinterpret_u8_u32(vld1_u32(src)); 639 alpha_narrow = vtbl1_u8(src_raw, alpha_mask); 652 dst_final = vadd_u8(src_raw, dst_cooked); 790 uint8x8_t src_raw, dst_raw, dst_final; local 794 src_raw = vreinterpret_u8_u32(vld1_u32(src)) [all...] |
/external/skia/src/opts/ |
SkBlitRow_opts_arm_neon.cpp | 502 uint8x8_t src_raw, dst_raw, dst_final; local 513 src_raw = vreinterpret_u8_u32(vld1_u32(src)); 532 alpha_narrow = vtbl1_u8(src_raw, alpha_mask); 543 dst_final = vadd_u8(src_raw, dst_cooked); 610 uint8x8_t src_raw, dst_raw, dst_final; local 630 src_raw = vreinterpret_u8_u32(vld1_u32(src)); 639 alpha_narrow = vtbl1_u8(src_raw, alpha_mask); 652 dst_final = vadd_u8(src_raw, dst_cooked); 790 uint8x8_t src_raw, dst_raw, dst_final; local 794 src_raw = vreinterpret_u8_u32(vld1_u32(src)) [all...] |
/external/libyuv/files/source/ |
row_neon.cc | 619 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { 629 : "+r"(src_raw), // %0 [all...] |
convert_argb.cc | 365 int RAWToARGB(const uint8* src_raw, int src_stride_raw, 368 if (!src_raw || !dst_argb || 375 src_raw = src_raw + (height - 1) * src_stride_raw; 378 void (*RAWToARGBRow)(const uint8* src_raw, uint8* dst_argb, int pix) = 389 RAWToARGBRow(src_raw, dst_argb, width); 390 src_raw += src_stride_raw; [all...] |
convert.cc | [all...] |
row_common.cc | 84 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { 86 uint8 r = src_raw[0]; 87 uint8 g = src_raw[1]; 88 uint8 b = src_raw[2]; 94 src_raw += 3; [all...] |
row_posix.cc | 287 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { 317 : "+r"(src_raw), // %0 [all...] |
row_win.cc | 277 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, 280 mov eax, [esp + 4] // src_raw [all...] |