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

1 2

  /system/core/libpixelflinger/
t32cb16blend.S 147 beq aligned
158 aligned: label
  /external/compiler-rt/lib/asan/lit_tests/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 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);
  /external/chromium_org/third_party/mesa/src/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/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/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/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::__anon23409
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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vg_context.h 185 void *aligned = align_pointer(ptr, alignment); local
186 return (ptr == aligned) ? VG_TRUE : VG_FALSE;

Completed in 815 milliseconds

1 2