HomeSort by relevance Sort by last modified time
    Searched refs:src_raw (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 426 uint8x8_t src_raw, dst_raw, dst_final; local
437 src_raw = vreinterpret_u8_u32(vld1_u32(src));
456 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
467 dst_final = vadd_u8(src_raw, dst_cooked);
534 uint8x8_t src_raw, dst_raw, dst_final; local
554 src_raw = vreinterpret_u8_u32(vld1_u32(src));
563 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
576 dst_final = vadd_u8(src_raw, dst_cooked);
714 uint8x8_t src_raw, dst_raw, dst_final; local
718 src_raw = vreinterpret_u8_u32(vld1_u32(src))
    [all...]
  /external/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 426 uint8x8_t src_raw, dst_raw, dst_final; local
437 src_raw = vreinterpret_u8_u32(vld1_u32(src));
456 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
467 dst_final = vadd_u8(src_raw, dst_cooked);
534 uint8x8_t src_raw, dst_raw, dst_final; local
554 src_raw = vreinterpret_u8_u32(vld1_u32(src));
563 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
576 dst_final = vadd_u8(src_raw, dst_cooked);
714 uint8x8_t src_raw, dst_raw, dst_final; local
718 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...]

Completed in 3489 milliseconds