/external/llvm/include/llvm/Support/ |
D | Endian.h | 26 enum {aligned = 0, unaligned = 1}; enumerator 131 <uint16_t, little, unaligned> ulittle16_t; 133 <uint32_t, little, unaligned> ulittle32_t; 135 <uint64_t, little, unaligned> ulittle64_t; 138 <int16_t, little, unaligned> little16_t; 140 <int32_t, little, unaligned> little32_t; 142 <int64_t, little, unaligned> little64_t; 159 <uint16_t, big, unaligned> ubig16_t; 161 <uint32_t, big, unaligned> ubig32_t; 163 <uint64_t, big, unaligned> ubig64_t; [all …]
|
/external/boringssl/src/crypto/chacha/ |
D | chacha_vec_arm.S | 92 ldr r0, [ip] @ unaligned 94 ldr r1, [ip, #4] @ unaligned 96 ldr r2, [r8, #8] @ unaligned 100 ldr r1, [lr, #4] @ unaligned 101 ldr r0, [lr] @ unaligned 104 ldr r3, [lr, #12] @ unaligned 107 ldr r0, [lr, #16]! @ unaligned 112 ldr r1, [lr, #4] @ unaligned 113 ldr r2, [lr, #8] @ unaligned 114 ldr r3, [lr, #12] @ unaligned [all …]
|
/external/llvm/unittests/Support/ |
D | EndianTest.cpp | 27 EXPECT_EQ(BigAsHost, (endian::read<int32_t, big, unaligned>(bigval))); in TEST() 29 EXPECT_EQ(LittleAsHost,(endian::read<int32_t, little, unaligned>(littleval))); in TEST() 31 EXPECT_EQ((endian::read<int32_t, big, unaligned>(bigval + 1)), in TEST() 32 (endian::read<int32_t, little, unaligned>(littleval + 1))); in TEST() 37 endian::write<int32_t, big, unaligned>(data, -1362446643); in TEST() 42 endian::write<int32_t, big, unaligned>(data + 1, -1362446643); in TEST() 48 endian::write<int32_t, little, unaligned>(data, -1362446643); in TEST() 53 endian::write<int32_t, little, unaligned>(data + 1, -1362446643); in TEST()
|
/external/elfutils/src/libcpu/ |
D | memory-access.h | 84 union unaligned union 98 const union unaligned *up = p; in read_2ubyte_unaligned() 106 const union unaligned *up = p; in read_2sbyte_unaligned() 115 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() 121 const union unaligned *up = p; in read_4ubyte_unaligned() 129 const union unaligned *up = p; in read_4sbyte_unaligned() 138 const union unaligned *up = p; in read_8ubyte_unaligned() 146 const union unaligned *up = p; in read_8sbyte_unaligned()
|
/external/llvm/test/CodeGen/Mips/ |
D | swzero.ll | 3 %struct.unaligned = type <{ i32 }> 5 define void @zero_u(%struct.unaligned* nocapture %p) nounwind { 9 %x = getelementptr inbounds %struct.unaligned, %struct.unaligned* %p, i32 0, i32 0
|
/external/elfutils/src/libdw/ |
D | memory-access.h | 149 union unaligned union 176 const union unaligned *up = p; in read_2ubyte_unaligned_1() 184 const union unaligned *up = p; in read_2sbyte_unaligned_1() 193 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() 199 const union unaligned *up = p; in read_4ubyte_unaligned_1() 207 const union unaligned *up = p; in read_4sbyte_unaligned_1() 216 const union unaligned *up = p; in read_8ubyte_unaligned_noncvt() 222 const union unaligned *up = p; in read_8ubyte_unaligned_1() 230 const union unaligned *up = p; in read_8sbyte_unaligned_1()
|
/external/eigen/test/eigen2/ |
D | eigen2_unalignedassert.cpp | 85 float *unaligned = buf; in check_unalignedassert_bad() local 86 …while((reinterpret_cast<std::size_t>(unaligned)&0xf)==0) ++unaligned; // make sure unaligned is re… in check_unalignedassert_bad() 87 T *x = ::new(static_cast<void*>(unaligned)) T; in check_unalignedassert_bad()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_pointer.h | 85 align_pointer( const void *unaligned, uintptr_t alignment ) in align_pointer() argument 87 uintptr_t aligned = (pointer_to_uintptr( unaligned ) + alignment - 1) & ~(alignment - 1); in align_pointer() 96 align16( void *unaligned ) in align16() argument 98 return align_pointer( unaligned, 16 ); in align16()
|
/external/llvm/test/CodeGen/SystemZ/ |
D | int-move-09.ll | 89 ; Repeat f1 with an unaligned variable. 100 ; Repeat f2 with an unaligned variable. 111 ; Repeat f3 with an unaligned variable. 122 ; Repeat f4 with an unaligned variable. 133 ; Repeat f5 with an unaligned variable. 144 ; Repeat f6 with an unaligned variable. 155 ; Repeat f7 with unaligned variables.
|
D | unaligned-01.ll | 1 ; Check that unaligned accesses are allowed in general. We check the 25 ; Check that unaligned 2-byte accesses are allowed. 36 ; Check that unaligned 4-byte accesses are allowed. 50 ; Check that unaligned 8-byte accesses are allowed.
|
D | int-move-08.ll | 57 ; Repeat f1 with an unaligned variable. 68 ; Repeat f2 with an unaligned variable. 79 ; Repeat f3 with an unaligned variable. 90 ; Repeat f4 with unaligned variables.
|
D | la-01.ll | 52 ; Test a load of an unaligned external variable, which must go via the GOT. 60 ; Test a load of an unaligned local variable, which must go via the GOT.
|
/external/llvm/test/MC/ARM/ |
D | directive-align.s | 5 unaligned: label 9 @ CHECK-LABEL: unaligned
|
/external/clang/lib/Lex/ |
D | PTHLexer.cpp | 333 (unsigned)endian::readNext<uint16_t, little, unaligned>(d); in ReadKeyDataLength() 363 uint32_t x = endian::readNext<uint32_t, little, unaligned>(d); in ReadData() 364 uint32_t y = endian::readNext<uint32_t, little, unaligned>(d); in ReadData() 395 (unsigned)endian::readNext<uint16_t, little, unaligned>(d), in ReadKeyDataLength() 408 return endian::readNext<uint32_t, little, unaligned>(d); in ReadData() 551 endian::readNext<uint16_t, little, unaligned>(originalSourceBase); in Create() 675 uint64_t File = endian::readNext<uint64_t, little, unaligned>(d); in ReadData() 676 uint64_t Device = endian::readNext<uint64_t, little, unaligned>(d); in ReadData() 678 time_t ModTime = endian::readNext<uint64_t, little, unaligned>(d); in ReadData() 679 uint64_t Size = endian::readNext<uint64_t, little, unaligned>(d); in ReadData()
|
/external/llvm/lib/ProfileData/ |
D | CoverageMappingReader.cpp | 331 uint32_t NRecords = endian::readNext<uint32_t, Endian, unaligned>(Buf); in readCoverageMappingData() 332 uint32_t FilenamesSize = endian::readNext<uint32_t, Endian, unaligned>(Buf); in readCoverageMappingData() 333 uint32_t CoverageSize = endian::readNext<uint32_t, Endian, unaligned>(Buf); in readCoverageMappingData() 334 uint32_t Version = endian::readNext<uint32_t, Endian, unaligned>(Buf); in readCoverageMappingData() 366 T NamePtr = endian::readNext<T, Endian, unaligned>(FunBuf); in readCoverageMappingData() 367 uint32_t NameSize = endian::readNext<uint32_t, Endian, unaligned>(FunBuf); in readCoverageMappingData() 368 uint32_t DataSize = endian::readNext<uint32_t, Endian, unaligned>(FunBuf); in readCoverageMappingData() 369 uint64_t FuncHash = endian::readNext<uint64_t, Endian, unaligned>(FunBuf); in readCoverageMappingData()
|
D | InstrProfReader.cpp | 325 uint64_t Magic = endian::readNext<uint64_t, little, unaligned>(Cur); in readHeader() 330 FormatVersion = endian::readNext<uint64_t, little, unaligned>(Cur); in readHeader() 335 MaxFunctionCount = endian::readNext<uint64_t, little, unaligned>(Cur); in readHeader() 339 endian::readNext<uint64_t, little, unaligned>(Cur)); in readHeader() 342 uint64_t HashOffset = endian::readNext<uint64_t, little, unaligned>(Cur); in readHeader()
|
/external/llvm/test/CodeGen/X86/ |
D | win64_alloca_dynalloca.ll | 8 define i64 @unaligned(i64 %n, i64 %x) nounwind { 9 ; M64-LABEL: unaligned: 10 ; W64-LABEL: unaligned: 11 ; EFI-LABEL: unaligned:
|
D | sandybridge-loads.ll | 11 %v0 = load <8 x float>, <8 x float>* %a, align 16 ; <---- unaligned! 36 store <8 x float> %v1, <8 x float>* %a, align 16 ; <--- unaligned
|
D | logical-load-fold.ll | 1 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=sse2,sse-unaligned-mem | FileCheck %s --chec… 4 ; Although we have the ability to fold an unaligned load with AVX
|
/external/elfutils/src/libelf/ |
D | gelf_xlate.c | 71 union unaligned union 78 #define FETCH(Bits, ptr) (((const union unaligned *) ptr)->u##Bits) 79 #define STORE(Bits, ptr, val) (((union unaligned *) ptr)->u##Bits = val)
|
/external/valgrind/none/tests/ |
D | map_unaligned.stderr.exp | 2 unaligned mmap failed: Invalid argument
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_util.c | 41 void *unaligned ) in tgsi_align_128bit() argument 46 ph.pointer = unaligned; in tgsi_align_128bit()
|
D | tgsi_util.h | 41 void *unaligned );
|
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfReader.h | 233 offset_type KeyLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength() 234 offset_type DataLen = endian::readNext<offset_type, little, unaligned>(D); in ReadKeyDataLength() 254 DataBuffer.push_back(endian::readNext<uint64_t, little, unaligned>(D)); in ReadData()
|
/external/llvm/test/Object/ |
D | nm-archive.test | 47 This archive has an unaligned member and a unknown format member. 48 GNU AR is able to parse the unaligned member and warns about the member with
|