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

1 2 3 4

  /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.25/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);
ByteBufferBulkBenchmark.java 34 @Param({"true", "false"}) private boolean aligned; field in class:ByteBufferBulkBenchmark
45 public static ByteBuffer newBuffer(boolean aligned, MyBufferType bufferType, int bsize) throws IOException {
46 int size = aligned ? bsize : bsize + 8 + 1;
65 result.position(aligned ? 0 : 1);
70 ByteBuffer src = ByteBufferBulkBenchmark.newBuffer(aligned, srcBufferType, bufferSize);
71 ByteBuffer data = ByteBufferBulkBenchmark.newBuffer(aligned, dataBufferType, bufferSize);
73 src.position(aligned ? 0 : 1);
74 data.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::__anon25012
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/deqp/framework/common/
tcuFloatFormat.cpp 244 const deUint64 aligned = fraction << (numDigits * 4 - m_fractionBits); local
249 << std::hex << std::setw(numDigits) << std::setfill('0') << aligned
  /external/eigen/unsupported/Eigen/src/FFT/
ei_fftw_impl.h 242 bool aligned = ( (reinterpret_cast<size_t>(src)&15) | (reinterpret_cast<size_t>(dst)&15) ) == 0; local
243 int64_t key = ( (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1;
251 bool aligned = ( (reinterpret_cast<size_t>(src)&15) | (reinterpret_cast<size_t>(dst)&15) ) == 0; local
252 int64_t key = ( ( (((int64_t)n0) << 30)|(n1<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1 ) + 1;
  /external/swiftshader/src/Common/
Memory.cpp 78 unsigned char *aligned = 0; local
82 aligned = (unsigned char*)((uintptr_t)(block + sizeof(Allocation) + alignment - 1) & -(intptr_t)alignment);
83 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation));
89 return aligned;
108 unsigned char *aligned = (unsigned char*)memory; local
109 Allocation *allocation = (Allocation*)(aligned - sizeof(Allocation));
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5block_arm.s 46 BEQ aligned // aligned detected - skip copy
48 // Copy the unaligned source data into the aligned temporary buffer
55 // Point to the local aligned copy of the data
58 aligned: label
  /prebuilts/go/linux-x86/src/crypto/md5/
md5block_arm.s 46 BEQ aligned // aligned detected - skip copy
48 // Copy the unaligned source data into the aligned temporary buffer
55 // Point to the local aligned copy of the data
58 aligned: label
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiCopyMem.c 77 ; Pick up misaligned start bytes to get destination pointer 4-byte aligned
84 je SHORT _CopyBlocks ; already aligned? local
EfiCopyMemSSE2.c 74 ; Pick up misaligned start bytes to get destination pointer 4-byte aligned
81 je SHORT _CopyBlocks ; already aligned? local
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 88 const bool aligned = (stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0; local
108 if (!aligned)
228 const bool aligned = ((stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0) && (offsets[offsetNdx] % Array::inputTypeSize(inputTypes[inputTypeNdx]) == 0); local
248 if (!aligned)
296 const bool aligned = ((stride % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0) && ((offsets[offsetNdx] % Array::inputTypeSize(inputTypes[inputTypeNdx])) == 0); local
316 if (!aligned)

Completed in 530 milliseconds

1 2 3 4