Searched refs:unaligned_load (Results 1 – 5 of 5) sorted by relevance
/external/skia/src/opts/ |
D | SkChecksum_opts.h | 23 static inline T unaligned_load(const uint8_t* src) { in unaligned_load() function 45 a = _mm_crc32_u64(a, unaligned_load<uint64_t>(data+ 0)); in hash_fn() 46 b = _mm_crc32_u64(b, unaligned_load<uint64_t>(data+ 8)); in hash_fn() 47 c = _mm_crc32_u64(c, unaligned_load<uint64_t>(data+16)); in hash_fn() 56 hash = _mm_crc32_u64(hash, unaligned_load<uint64_t>(data)); in hash_fn() 63 hash = _mm_crc32_u64(hash, unaligned_load<uint64_t>(data)); in hash_fn() 72 hash32 = _mm_crc32_u32(hash32, unaligned_load<uint32_t>(data)); in hash_fn() 76 hash32 = _mm_crc32_u16(hash32, unaligned_load<uint16_t>(data)); in hash_fn() 80 hash32 = _mm_crc32_u8(hash32, unaligned_load<uint8_t>(data)); in hash_fn() 99 a = _mm_crc32_u32(a, unaligned_load<uint32_t>(data+0)); in hash_fn() [all …]
|
/external/valgrind/none/tests/mips64/ |
D | Makefile.am | 57 unaligned_load.stdout.exp-BE unaligned_load.stdout.exp-LE \ 58 unaligned_load.stderr.exp unaligned_load.vgtest \ 90 unaligned_load \ program
|
D | unaligned_load.vgtest | 1 prog: unaligned_load
|
/external/llvm/test/CodeGen/Hexagon/ |
D | select-instr-align.ll | 6 ; CHECK-LABEL: unaligned_load: 21 define <16 x i32> @unaligned_load(<16 x i32>* %p, <16 x i32> %a) {
|
/external/skia/src/jumper/ |
D | SkJumper_stages.cpp | 14 SI T unaligned_load(const P* p) { in unaligned_load() function 23 return unaligned_load<Dst>(&src); in bit_cast() 36 int x = C(unaligned_load<int>(&f)); in C() 37 return unaligned_load<float>(&x); in C() 167 return unaligned_load<U8>(&r); in pack() 212 return unaligned_load<U16>(&p); // We have two copies. Return (the lower) one. in pack() 218 return unaligned_load<U8>(&r); in pack() 276 return unaligned_load<V>(src); in load() 310 return unaligned_load<U8>(&v); in load() 312 return unaligned_load<U8>(src); in load() [all …]
|