/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_common.h | 227 INLINE bool IsAligned(uptr a, uptr alignment) {
|
sanitizer_allocator.h | [all...] |
/external/compiler-rt/lib/asan/ |
asan_allocator2.cc | 344 CHECK(IsAligned(needed_size, min_alignment)); 365 if (!IsAligned(user_beg, alignment)) 675 CHECK(IsAligned((uptr)ptr, alignment));
|
/external/chromium_org/v8/src/ |
objects-visiting.h | 143 ASSERT(IsAligned(object_size, kPointerSize));
|
platform-win32.cc | 897 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment())); [all...] |
utils.h | 226 inline bool IsAligned(T value, U alignment) { 236 return IsAligned(offs, alignment); [all...] |
spaces.cc | 657 ASSERT(IsAligned(reinterpret_cast<intptr_t>(base), [all...] |
spaces.h | [all...] |
heap-inl.h | 463 ASSERT(IsAligned(byte_size, kPointerSize));
|
objects-debug.cc | 664 CHECK(IsAligned(reinterpret_cast<intptr_t>(instruction_start()), [all...] |
/external/mdnsresponder/mDNSShared/ |
CommonServices.h | 617 /*! @function IsAligned 622 #define IsAligned( X, Y ) ( ( ( X ) & ( ( Y ) - 1 ) ) == 0 ) 630 #define IsFieldAligned( X, TYPE, FIELD, Y ) IsAligned( ( (uintptr_t)( X ) ) + offsetof( TYPE, FIELD ), ( Y ) ) [all...] |
/external/v8/src/ |
utils.h | 180 inline bool IsAligned(T value, U alignment) { 190 return IsAligned(offs, alignment);
|
spaces.cc | 515 ASSERT(IsAligned(reinterpret_cast<intptr_t>(base), [all...] |
heap-inl.h | 391 ASSERT(IsAligned(byte_size, kPointerSize));
|
platform-macos.cc | 363 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
|
platform-solaris.cc | 344 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
|
platform-win32.cc | 940 ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment())); [all...] |
spaces.h | [all...] |
objects-debug.cc | 550 CHECK(IsAligned(reinterpret_cast<intptr_t>(instruction_start()),
|
platform-freebsd.cc | 354 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
|
platform-linux.cc | 607 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment()))); [all...] |
platform-openbsd.cc | 401 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
|
/art/runtime/gc/ |
heap.cc | 640 if (UNLIKELY(!IsAligned<kObjectAlignment>(obj))) { 649 if (obj == NULL || UNLIKELY(!IsAligned<kObjectAlignment>(obj))) { 729 CHECK(IsAligned<kObjectAlignment>(obj)) << "Object isn't aligned: " << obj; 739 } else if (UNLIKELY(!IsAligned<kObjectAlignment>(c))) { [all...] |
/art/runtime/interpreter/ |
interpreter.cc | [all...] |
/external/eigen/Eigen/src/Core/ |
Assign.h | 364 template <bool IsAligned = false>
|