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

1 2

  /system/core/libpixelflinger/
t32cb16blend.S 147 beq aligned
158 aligned: label
  /system/core/libpixelflinger/arch-mips/
t32cb16blend.S 183 beqz $t0,aligned
197 aligned: label
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh-global-1.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
25 aligned i;
eh-inline-1.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
26 aligned i;
eh-alloca-1.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
32 aligned i;
eh-inline-2.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
33 aligned i;
eh-vararg-1.cpp 10 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
34 aligned i;
eh-vararg-2.cpp 10 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
33 aligned i;
  /ndk/tests/device/test-stlport_static-exception/jni/
eh-global-1.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
25 aligned i;
eh-inline-1.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
26 aligned i;
eh-alloca-1.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
32 aligned i;
eh-inline-2.cpp 9 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
33 aligned i;
eh-vararg-1.cpp 10 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
34 aligned i;
eh-vararg-2.cpp 10 typedef int aligned __attribute__((aligned(ALIGNMENT))); typedef
33 aligned i;
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferScalarVersusVectorBenchmark.java 31 @Param({"true", "false"}) private boolean aligned; field in class:ByteBufferScalarVersusVectorBenchmark
35 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
36 ByteBuffer dst = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
47 ByteBuffer src = ByteBuffer.allocate(aligned ? 8192 : 8192 + 1);
50 src.position(aligned ? 0 : 1);
56 ByteBuffer src = ByteBuffer.allocateDirect(aligned ? 8192 : 8192 + 1);
59 src.position(aligned ? 0 : 1);
ByteBufferBenchmark.java 40 @Param({"true", "false"}) private boolean aligned; field in class:ByteBufferBenchmark
47 public static ByteBuffer newBuffer(MyByteOrder byteOrder, boolean aligned, MyBufferType bufferType) throws IOException {
48 int size = aligned ? 8192 : 8192 + 8 + 1;
72 result.position(aligned ? 0 : 1);
81 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
83 src.position(aligned ? 0 : 1);
91 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
95 src.position(aligned ? 0 : 1);
102 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType);
104 src.position(aligned ? 0 : 1)
    [all...]
  /external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp 17 [[gnu::aligned(8)]] int aligned; variable
18 void aligned_fn [[gnu::aligned(32)]] ();
19 struct [[gnu::aligned(8)]] aligned_struct {};
  /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/v8/src/
unicode-inl.h 170 unsigned aligned = (offset + 0x3) & ~0x3; local
171 if ((aligned + sizeof(uchar)) > capacity)
173 if (offset == aligned) {
174 IF_LITTLE(*reinterpret_cast<uchar*>(buffer + aligned) = (c << 8) | 0x80);
175 IF_BIG(*reinterpret_cast<uchar*>(buffer + aligned) = c | (1 << 31));
178 IF_LITTLE(*reinterpret_cast<uchar*>(buffer + aligned) = c << 8);
179 IF_BIG(*reinterpret_cast<uchar*>(buffer + aligned) = c);
181 offset = aligned + sizeof(uchar);
200 unsigned aligned = (*offset + 0x3) & ~0x3; local
201 *offset = aligned + sizeof(uchar)
    [all...]
  /external/e2fsprogs/e2fsck/
mtrace.h 177 __ptr_t aligned; /* The address that memaligned returned. */ member in struct:alignlist
  /external/llvm/include/llvm/Support/
Endian.h 27 enum {aligned = 0, unaligned = 1}; enumerator in enum:llvm::support::__anon11291
110 <uint8_t, little, aligned> aligned_ulittle8_t;
112 <uint16_t, little, aligned> aligned_ulittle16_t;
114 <uint32_t, little, aligned> aligned_ulittle32_t;
116 <uint64_t, little, aligned> aligned_ulittle64_t;
119 <int8_t, little, aligned> aligned_little8_t;
121 <int16_t, little, aligned> aligned_little16_t;
123 <int32_t, little, aligned> aligned_little32_t;
125 <int64_t, little, aligned> aligned_little64_t;
146 <uint8_t, big, aligned> aligned_ubig8_t
    [all...]
  /external/openfst/src/test/
fst_test.h 212 const string aligned = FLAGS_tmpdir + "/aligned.fst"; local
239 // check mmaping by first writing the file with the aligned attribute set
241 ofstream ostr(aligned.c_str());
243 opts.source = aligned;
247 ifstream istr(aligned.c_str());
250 opts.source = aligned;
260 ofstream ostr(aligned.c_str());
262 opts.source = aligned;
266 ifstream istr(aligned.c_str())
    [all...]
  /dalvik/vm/alloc/
Copying.cpp 587 size_t aligned, available, blocks; local
594 aligned = alignUp(length, ALLOC_ALIGNMENT);
598 if (aligned <= available) {
600 heapSource->allocPtr += aligned;
601 heapSource->bytesAllocated += aligned;
607 if (aligned <= BLOCK_SIZE) {
611 heapSource->allocPtr = addr + aligned;
612 heapSource->bytesAllocated += aligned;
620 blocks = alignUp(aligned, BLOCK_SIZE) / BLOCK_SIZE;
625 heapSource->bytesAllocated += aligned;
    [all...]
  /external/compiler-rt/lib/msan/
msan.cc 391 // 4 byte aligned.
445 uptr aligned = x & ~3ULL; local
446 uptr origin_ptr = MEM_TO_ORIGIN(aligned);
  /external/eigen/Eigen/src/Core/util/
Memory.h 16 *** Platform checks for aligned malloc functions ***
22 // On 64-bit systems, glibc's malloc returns 16-byte-aligned pointers, see:
23 // http://www.gnu.org/s/libc/manual/html_node/Aligned-Memory-Blocks.html
36 // FreeBSD 6 seems to have 16-byte aligned malloc
38 // FreeBSD 7 seems to have 16-byte aligned malloc except on ARM and MIPS architectures
83 *** Implementation of handmade aligned functions ***
86 /* ----- Hand made implementations of aligned malloc/free and realloc ----- */
88 /** \internal Like malloc, but the returned pointer is guaranteed to be 16-byte aligned.
95 void *aligned = reinterpret_cast<void*>((reinterpret_cast<size_t>(original) & ~(size_t(15))) + 16); local
96 *(reinterpret_cast<void**>(aligned) - 1) = original
117 void *aligned = reinterpret_cast<void*>((reinterpret_cast<size_t>(original) & ~(size_t(15))) + 16); local
    [all...]

Completed in 398 milliseconds

1 2