HomeSort by relevance Sort by last modified time
    Searched refs:IsAligned (Results 1 - 25 of 26) sorted by null

1 2

  /external/v8/src/
small-pointer-list.h 64 ASSERT(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
81 ASSERT(IsAligned(reinterpret_cast<intptr_t>(pointer), kPointerAlignment));
90 ASSERT(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
safepoint-table.cc 43 ASSERT(IsAligned(kNumSafepointRegisters, kBitsPerByte));
93 ASSERT(IsAligned(kNumSafepointRegisters, kBitsPerByte));
201 ASSERT(IsAligned(kNumSafepointRegisters, kBitsPerByte));
objects-visiting.h 136 ASSERT(IsAligned(object_size, kPointerSize));
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 612 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
    [all...]
platform-openbsd.cc 401 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
objects-inl.h     [all...]
mark-compact.cc     [all...]
objects.h     [all...]
heap.cc     [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.cc 63 static inline bool IsAligned(uptr a, uptr alignment) {
126 CHECK(IsAligned(mem, REDZONE));
135 CHECK(IsAligned(size, kPageSize));
635 CHECK(IsAligned(needed_size, REDZONE));
646 CHECK(IsAligned(size_to_allocate, REDZONE));
866 CHECK(IsAligned((uptr)ptr, alignment));
  /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/arm/
macro-assembler-arm.cc 454 ASSERT(IsAligned(offset, kPointerSize));
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 215 ASSERT(IsAligned(offset, kPointerSize));
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc     [all...]
macro-assembler-x64.cc 304 ASSERT(IsAligned(offset, kPointerSize));
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 208 ASSERT(IsAligned(offset, kPointerSize));
    [all...]

Completed in 280 milliseconds

1 2