| /external/mesa3d/src/gallium/state_trackers/vega/ |
| vg_context.h | 185 void *aligned = align_pointer(ptr, alignment); local 186 return (ptr == aligned) ? VG_TRUE : VG_FALSE;
|
| /libcore/benchmarks/src/benchmarks/regression/ |
| 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...] |
| /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 | 414 // 4 byte aligned. 468 uptr aligned = x & ~3ULL; local 469 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...] |
| /external/valgrind/main/coregrind/ |
| m_machine.c | 452 * instructions don't raise a SIGILL, that they will zero an aligned, 461 char *aligned = test_block; local 465 aligned = (char *)(((HWord)aligned + MAX_DCBZL_SZB) & ~(MAX_DCBZL_SZB - 1)); 466 vg_assert((aligned + MAX_DCBZL_SZB) <= &test_block[sizeof(test_block)]); 473 : "r" (aligned) /*in*/ 491 : "r" (aligned) /*in*/ [all...] |
| /external/chromium_org/v8/src/ia32/ |
| macro-assembler-ia32.cc | 1318 Label aligned; local 1395 Label aligned; local 1470 Label aligned; local [all...] |
| /external/valgrind/main/memcheck/ |
| mc_main.c | 365 /* An entry in the auxiliary primary map. base must be a 64k-aligned 696 tl_assert(VG_IS_2_ALIGNED(a)); // Must be 2-aligned 714 tl_assert(VG_IS_2_ALIGNED(a)); // Must be 2-aligned 1683 Bool aligned, nooverlap; local [all...] |
| /external/v8/test/cctest/ |
| test-api.cc | 866 // Check not aligned addresses. 1939 void* aligned = data; local 1971 void* aligned = data; local [all...] |
| /external/valgrind/main/perf/ |
| tinycc.c | 2224 int aligned; member in struct:AttributeDef [all...] |
| /prebuilts/sdk/12/ |
| android.jar | |
| /prebuilts/sdk/14/ |
| android.jar | |
| /prebuilts/sdk/15/ |
| android.jar | |
| /prebuilts/sdk/17/ |
| android.jar | |
| /prebuilts/sdk/18/ |
| android.jar | |
| /prebuilts/sdk/19/ |
| android.jar | |
| /prebuilts/sdk/current/ |
| android.jar | |