HomeSort by relevance Sort by last modified time
    Searched defs:aligned (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
pr19005.s 7 .globl aligned
8 .type aligned, %function
10 aligned: label
  /external/llvm/test/MC/ARM/
directive-align.s 13 aligned: label
17 @ CHECK-LABEL: aligned
  /system/core/libpixelflinger/arch-arm64/
t32cb16blend.S 162 b.eq aligned
172 aligned: label
  /system/core/libpixelflinger/
t32cb16blend.S 148 beq aligned
159 aligned: label
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/
err-mova.s 13 mova aligned, r0 ! ok
17 aligned: label
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32_amd64p32.s 19 /* Process individual bytes until the input is 8-byte aligned. */
23 JZ aligned
30 aligned: label
31 /* The input is now 8-byte aligned and we can process 8-byte chunks. */
38 JMP aligned
crc32_amd64.s 21 JZ aligned
48 JNC aligned
56 aligned: label
57 // The input is now 8-byte aligned and we can process 8-byte chunks.
64 JMP aligned
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32_amd64p32.s 19 /* Process individual bytes until the input is 8-byte aligned. */
23 JZ aligned
30 aligned: label
31 /* The input is now 8-byte aligned and we can process 8-byte chunks. */
38 JMP aligned
crc32_amd64.s 21 JZ aligned
48 JNC aligned
56 aligned: label
57 // The input is now 8-byte aligned and we can process 8-byte chunks.
64 JMP aligned
  /external/compiler-rt/test/asan/TestCases/Darwin/
malloc_set_zone_name-mprotect.cc 4 // page-aligned address, so we can only test on a best-effort basis.
23 // Try to allocate a page-aligned malloc zone. Otherwise the mprotect() call
26 bool aligned = false; local
30 aligned = true;
34 if (!aligned) {
35 printf("Warning: couldn't allocate a page-aligned zone.");
  /system/core/libpixelflinger/arch-mips/
t32cb16blend.S 190 beqz $t0,aligned
204 aligned: label
  /system/core/libpixelflinger/arch-mips64/
t32cb16blend.S 88 beqz $a4,aligned
102 aligned: label
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferScalarVersusVectorBenchmark.java 24 @Param({"true", "false"}) private boolean aligned; field in class:ByteBufferScalarVersusVectorBenchmark
28 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
29 ByteBuffer dst = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
40 ByteBuffer src = ByteBuffer.allocate(aligned ? 8192 : 8192 + 1);
43 src.position(aligned ? 0 : 1);
49 ByteBuffer src = ByteBuffer.allocateDirect(aligned ? 8192 : 8192 + 1);
52 src.position(aligned ? 0 : 1);
  /external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp 35 [[gnu::aligned(8)]] int aligned; variable
36 void aligned_fn [[gnu::aligned(32)]] ();
37 struct [[gnu::aligned(8)]] aligned_struct {};
  /external/google-breakpad/src/common/dwarf/
bytereader.cc 112 // agree that aligned pointers are always absolute, machine-sized,
118 // need to find the next position in our buffer that would be aligned
122 // aligned.
124 // First, find the offset to START from the closest prior aligned
127 // Now find the offset from that aligned address to buffer.
130 uint64 aligned = (offset + AddressSize() - 1) & -AddressSize(); local
132 const char *aligned_buffer = buffer_base_ + (aligned - skew);
  /external/llvm/include/llvm/Support/
Endian.h 26 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon27080
248 <uint16_t, little, aligned> aligned_ulittle16_t;
250 <uint32_t, little, aligned> aligned_ulittle32_t;
252 <uint64_t, little, aligned> aligned_ulittle64_t;
255 <int16_t, little, aligned> aligned_little16_t;
257 <int32_t, little, aligned> aligned_little32_t;
259 <int64_t, little, aligned> aligned_little64_t;
276 <uint16_t, big, aligned> aligned_ubig16_t;
278 <uint32_t, big, aligned> aligned_ubig32_t;
280 <uint64_t, big, aligned> aligned_ubig64_t
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_pointer.h 82 * Return a pointer aligned to next multiple of N bytes.
87 uintptr_t aligned = (pointer_to_uintptr( unaligned ) + alignment - 1) & ~(alignment - 1); local
88 return uintptr_to_pointer( aligned );
93 * Return a pointer aligned to next multiple of 16 bytes.
  /external/swiftshader/src/Common/
Memory.cpp 69 unsigned char *aligned = nullptr; local
73 aligned = (unsigned char*)((uintptr_t)(block + sizeof(Allocation) + alignment - 1) & -(intptr_t)alignment);
74 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation));
80 return aligned;
99 unsigned char *aligned = (unsigned char*)memory; local
100 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation));
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Endian.h 25 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon36679
247 <uint16_t, little, aligned> aligned_ulittle16_t;
249 <uint32_t, little, aligned> aligned_ulittle32_t;
251 <uint64_t, little, aligned> aligned_ulittle64_t;
254 <int16_t, little, aligned> aligned_little16_t;
256 <int32_t, little, aligned> aligned_little32_t;
258 <int64_t, little, aligned> aligned_little64_t;
275 <uint16_t, big, aligned> aligned_ubig16_t;
277 <uint32_t, big, aligned> aligned_ubig32_t;
279 <uint64_t, big, aligned> aligned_ubig64_t
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Endian.h 27 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon53563
272 <uint16_t, little, aligned> aligned_ulittle16_t;
274 <uint32_t, little, aligned> aligned_ulittle32_t;
276 <uint64_t, little, aligned> aligned_ulittle64_t;
279 <int16_t, little, aligned> aligned_little16_t;
281 <int32_t, little, aligned> aligned_little32_t;
283 <int64_t, little, aligned> aligned_little64_t;
300 <uint16_t, big, aligned> aligned_ubig16_t;
302 <uint32_t, big, aligned> aligned_ubig32_t;
304 <uint64_t, big, aligned> aligned_ubig64_t
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Endian.h 33 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon54085
283 detail::packed_endian_specific_integral<uint16_t, little, aligned>;
285 detail::packed_endian_specific_integral<uint32_t, little, aligned>;
287 detail::packed_endian_specific_integral<uint64_t, little, aligned>;
290 detail::packed_endian_specific_integral<int16_t, little, aligned>;
292 detail::packed_endian_specific_integral<int32_t, little, aligned>;
294 detail::packed_endian_specific_integral<int64_t, little, aligned>;
311 detail::packed_endian_specific_integral<uint16_t, big, aligned>;
313 detail::packed_endian_specific_integral<uint32_t, big, aligned>;
315 detail::packed_endian_specific_integral<uint64_t, big, aligned>;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Endian.h 33 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon54600
283 detail::packed_endian_specific_integral<uint16_t, little, aligned>;
285 detail::packed_endian_specific_integral<uint32_t, little, aligned>;
287 detail::packed_endian_specific_integral<uint64_t, little, aligned>;
290 detail::packed_endian_specific_integral<int16_t, little, aligned>;
292 detail::packed_endian_specific_integral<int32_t, little, aligned>;
294 detail::packed_endian_specific_integral<int64_t, little, aligned>;
311 detail::packed_endian_specific_integral<uint16_t, big, aligned>;
313 detail::packed_endian_specific_integral<uint32_t, big, aligned>;
315 detail::packed_endian_specific_integral<uint64_t, big, aligned>;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Endian.h 33 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon55136
283 detail::packed_endian_specific_integral<uint16_t, little, aligned>;
285 detail::packed_endian_specific_integral<uint32_t, little, aligned>;
287 detail::packed_endian_specific_integral<uint64_t, little, aligned>;
290 detail::packed_endian_specific_integral<int16_t, little, aligned>;
292 detail::packed_endian_specific_integral<int32_t, little, aligned>;
294 detail::packed_endian_specific_integral<int64_t, little, aligned>;
311 detail::packed_endian_specific_integral<uint16_t, big, aligned>;
313 detail::packed_endian_specific_integral<uint32_t, big, aligned>;
315 detail::packed_endian_specific_integral<uint64_t, big, aligned>;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Endian.h 33 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon55676
283 detail::packed_endian_specific_integral<uint16_t, little, aligned>;
285 detail::packed_endian_specific_integral<uint32_t, little, aligned>;
287 detail::packed_endian_specific_integral<uint64_t, little, aligned>;
290 detail::packed_endian_specific_integral<int16_t, little, aligned>;
292 detail::packed_endian_specific_integral<int32_t, little, aligned>;
294 detail::packed_endian_specific_integral<int64_t, little, aligned>;
311 detail::packed_endian_specific_integral<uint16_t, big, aligned>;
313 detail::packed_endian_specific_integral<uint32_t, big, aligned>;
315 detail::packed_endian_specific_integral<uint64_t, big, aligned>;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Endian.h 33 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon56216
283 detail::packed_endian_specific_integral<uint16_t, little, aligned>;
285 detail::packed_endian_specific_integral<uint32_t, little, aligned>;
287 detail::packed_endian_specific_integral<uint64_t, little, aligned>;
290 detail::packed_endian_specific_integral<int16_t, little, aligned>;
292 detail::packed_endian_specific_integral<int32_t, little, aligned>;
294 detail::packed_endian_specific_integral<int64_t, little, aligned>;
311 detail::packed_endian_specific_integral<uint16_t, big, aligned>;
313 detail::packed_endian_specific_integral<uint32_t, big, aligned>;
315 detail::packed_endian_specific_integral<uint64_t, big, aligned>;
    [all...]

Completed in 393 milliseconds

1 2 3 4