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

  /art/runtime/mirror/
array-inl.h 299 const void* src_raw = src->GetRawData(sizeof(T), src_pos); local
302 const uint8_t* s = reinterpret_cast<const uint8_t*>(src_raw);
308 const uint16_t* s = reinterpret_cast<const uint16_t*>(src_raw);
316 const uint32_t* s = reinterpret_cast<const uint32_t*>(src_raw);
325 const uint64_t* s = reinterpret_cast<const uint64_t*>(src_raw);
354 const void* src_raw = src->GetRawData(sizeof(T), src_pos); local
356 memcpy(dst_raw, src_raw, count);
359 const uint16_t* s = reinterpret_cast<const uint16_t*>(src_raw);
363 const uint32_t* s = reinterpret_cast<const uint32_t*>(src_raw);
368 const uint64_t* s = reinterpret_cast<const uint64_t*>(src_raw);
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
convert.cc 904 int RAWToI420(const uint8* src_raw, int src_stride_raw,
911 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw,
913 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int pix) =
923 if (!src_raw || !dst_y || !dst_u || !dst_v ||
930 src_raw = src_raw + (height - 1) * src_stride_raw;
984 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width);
985 RAWToYRow(src_raw, dst_y, width);
986 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width);
988 RAWToARGBRow(src_raw, row, width)
    [all...]
row_neon64.cc     [all...]
convert_argb.cc 498 int RAWToARGB(const uint8* src_raw, int src_stride_raw,
504 if (!src_raw || !dst_argb ||
511 src_raw = src_raw + (height - 1) * src_stride_raw;
539 RAWToARGBRow(src_raw, dst_argb, width);
540 src_raw += src_stride_raw;
    [all...]
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_gcc.cc 306 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) {
336 : "+r"(src_raw), // %0
    [all...]
row_win.cc 423 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb,
426 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/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 890 uint8x8_t src_raw, dst_raw, dst_final; local
998 uint8x8_t src_raw, dst_raw, dst_final; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
row.h 589 void RAWToYRow_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
610 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw,
622 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix);
632 void RAWToYRow_C(const uint8* src_raw, uint8* dst_y, int pix);
642 void RAWToYRow_Any_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
649 void RAWToYRow_Any_NEON(const uint8* src_raw, uint8* dst_y, int pix);
696 void RAWToUVRow_Any_NEON(const uint8* src_raw, int src_stride_raw,
718 void RAWToUVRow_C(const uint8* src_raw, int src_stride_raw,
    [all...]
  /external/vixl/test/
test-assembler-a64.cc 15567 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
15713 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
15843 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
15968 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
    [all...]

Completed in 730 milliseconds