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

  /art/runtime/mirror/
array-inl.h 266 const void* src_raw = src->GetRawData(sizeof(T), src_pos); local
269 const uint8_t* s = reinterpret_cast<const uint8_t*>(src_raw);
275 const uint16_t* s = reinterpret_cast<const uint16_t*>(src_raw);
283 const uint32_t* s = reinterpret_cast<const uint32_t*>(src_raw);
292 const uint64_t* s = reinterpret_cast<const uint64_t*>(src_raw);
321 const void* src_raw = src->GetRawData(sizeof(T), src_pos); local
323 memcpy(dst_raw, src_raw, count);
326 const uint16_t* s = reinterpret_cast<const uint16_t*>(src_raw);
330 const uint32_t* s = reinterpret_cast<const uint32_t*>(src_raw);
335 const uint64_t* s = reinterpret_cast<const uint64_t*>(src_raw);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
convert.cc     [all...]
convert_argb.cc 476 int RAWToARGB(const uint8* src_raw, int src_stride_raw,
482 if (!src_raw || !dst_argb ||
489 src_raw = src_raw + (height - 1) * src_stride_raw;
517 RAWToARGBRow(src_raw, dst_argb, width);
518 src_raw += src_stride_raw;
row_neon.cc     [all...]
row_neon64.cc     [all...]
row_common.cc 88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) {
91 uint8 r = src_raw[0];
92 uint8 g = src_raw[1];
93 uint8 b = src_raw[2];
99 src_raw += 3;
    [all...]
row_posix.cc 345 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) {
375 : "+r"(src_raw), // %0
    [all...]
row_win.cc 407 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb,
410 mov eax, [esp + 4] // src_raw
    [all...]
  /external/chromium_org/third_party/libyuv/source/
convert.cc     [all...]
convert_argb.cc 476 int RAWToARGB(const uint8* src_raw, int src_stride_raw,
482 if (!src_raw || !dst_argb ||
489 src_raw = src_raw + (height - 1) * src_stride_raw;
517 RAWToARGBRow(src_raw, dst_argb, width);
518 src_raw += src_stride_raw;
row_neon.cc     [all...]
row_common.cc 88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) {
91 uint8 r = src_raw[0];
92 uint8 g = src_raw[1];
93 uint8 b = src_raw[2];
99 src_raw += 3;
    [all...]
row_posix.cc 345 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) {
375 : "+r"(src_raw), // %0
    [all...]
row_win.cc 408 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb,
411 mov eax, [esp + 4] // src_raw
    [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...]
  /external/chromium_org/third_party/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 756 uint8x8_t src_raw, dst_raw, dst_final; local
767 src_raw = vreinterpret_u8_u32(vld1_u32(src));
786 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
797 dst_final = vadd_u8(src_raw, dst_cooked);
864 uint8x8_t src_raw, dst_raw, dst_final; local
    [all...]
  /external/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 658 uint8x8_t src_raw, dst_raw, dst_final; local
669 src_raw = vreinterpret_u8_u32(vld1_u32(src));
688 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
699 dst_final = vadd_u8(src_raw, dst_cooked);
766 uint8x8_t src_raw, dst_raw, dst_final; local
786 src_raw = vreinterpret_u8_u32(vld1_u32(src));
795 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
808 dst_final = vadd_u8(src_raw, dst_cooked);
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
row.h 653 void RAWToYRow_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
660 void RAWToYRow_Unaligned_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
681 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw,
693 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix);
703 void RAWToYRow_C(const uint8* src_raw, uint8* dst_y, int pix);
713 void RAWToYRow_Any_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
720 void RAWToYRow_Any_NEON(const uint8* src_raw, uint8* dst_y, int pix);
777 void RAWToUVRow_Any_NEON(const uint8* src_raw, int src_stride_raw,
799 void RAWToUVRow_C(const uint8* src_raw, int src_stride_raw,
    [all...]
  /external/chromium_org/third_party/libyuv/include/libyuv/
row.h 561 void RAWToYRow_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
568 void RAWToYRow_Unaligned_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
589 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw,
601 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix);
611 void RAWToYRow_C(const uint8* src_raw, uint8* dst_y, int pix);
621 void RAWToYRow_Any_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
628 void RAWToYRow_Any_NEON(const uint8* src_raw, uint8* dst_y, int pix);
685 void RAWToUVRow_Any_NEON(const uint8* src_raw, int src_stride_raw,
707 void RAWToUVRow_C(const uint8* src_raw, int src_stride_raw,
    [all...]

Completed in 780 milliseconds