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

1 2 3

  /external/chromium_org/v8/src/
small-pointer-list.h 64 ASSERT(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
87 ASSERT(IsAligned(reinterpret_cast<intptr_t>(pointer), kPointerAlignment));
96 ASSERT(IsAligned(reinterpret_cast<intptr_t>(list), kPointerAlignment));
safepoint-table.cc 43 ASSERT(IsAligned(kNumSafepointRegisters, kBitsPerByte));
93 ASSERT(IsAligned(kNumSafepointRegisters, kBitsPerByte));
194 ASSERT(IsAligned(kNumSafepointRegisters, kBitsPerByte));
frames-inl.h 255 ASSERT(IsAligned(stack_size_in_bytes, kPointerSize));
platform-freebsd.cc 250 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
objects-visiting.h 142 ASSERT(IsAligned(object_size, kPointerSize));
platform-cygwin.cc 303 ASSERT(IsAligned(alignment, static_cast<intptr_t>(OS::AllocateAlignment())));
  /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));
  /external/chromium_org/media/base/
audio_bus.cc 16 static bool IsAligned(void* ptr) {
134 DCHECK(IsAligned(channel_data_[i]));
168 CHECK(IsAligned(data));
176 CHECK(IsAligned(data));
187 DCHECK(IsAligned(data));
226 DCHECK(IsAligned(data));
  /art/runtime/
utils.h 56 static inline bool IsAligned(T x) {
62 static inline bool IsAligned(T* x) {
63 return IsAligned<n>(reinterpret_cast<const uintptr_t>(x));
67 CHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
70 DCHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
oat.cc 51 CHECK(IsAligned<kPageSize>(image_file_location_oat_data_begin));
class_linker_test.cc     [all...]
  /external/eigen/Eigen/src/Core/
Map.h 85 IsAligned = bool(EIGEN_ALIGN) && ((int(MapOptions)&Aligned)==Aligned),
93 Flags1 = IsAligned ? (int(Flags0) | AlignedBit) : (int(Flags0) & ~AlignedBit),
  /art/runtime/gc/accounting/
card_table-inl.h 56 while (!IsAligned<sizeof(word)>(card_cur) && card_cur < card_end) {
128 while (!IsAligned<sizeof(word)>(card_cur) && card_cur < card_end) {
141 while (!IsAligned<sizeof(word)>(card_end) && card_end > card_cur) {
space_bitmap.cc 77 DCHECK(IsAligned<kBitsPerWord * kAlignment>(new_end));
  /art/runtime/gc/space/
large_object_space.cc 192 CHECK(IsAligned<kAlignment>(header));
195 DCHECK(IsAligned<kAlignment>(allocation_size));
212 DCHECK(IsAligned<kAlignment>(next_header));
216 DCHECK(IsAligned<kAlignment>(next_next_header));
217 DCHECK(IsAligned<kAlignment>(next_next_header->AllocationSize()));
dlmalloc_space.cc 131 CHECK(IsAligned<kGcCardSize>(reinterpret_cast<uintptr_t>(mem_map->Begin())));
132 CHECK(IsAligned<kGcCardSize>(reinterpret_cast<uintptr_t>(mem_map->End())));
283 DCHECK(IsAligned<accounting::CardTable::kCardSize>(begin_));
284 DCHECK(IsAligned<accounting::CardTable::kCardSize>(end_));
285 DCHECK(IsAligned<kPageSize>(begin_));
286 DCHECK(IsAligned<kPageSize>(end_));
large_object_space.h 146 DCHECK(IsAligned<kPageSize>(size));
178 DCHECK(IsAligned<kPageSize>(prev_free));
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 220 IsAligned = internal::traits<Coefficients>::Flags & AlignedBit,
221 Flags = IsAligned ? (AlignedBit | LvalueBit) : LvalueBit
230 enum { IsAligned = internal::traits<Quaternion>::IsAligned };
280 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF(IsAligned)
315 IsAligned = TraitsBase::IsAligned,
332 IsAligned = TraitsBase::IsAligned,
455 internal::traits<Derived>::IsAligned && internal::traits<OtherDerived>::IsAligned>::run(*this, other)
    [all...]
  /art/runtime/base/
histogram-inl.h 58 CHECK(IsAligned<2>(frequency_.size()));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace.cc 142 IsAligned((uptr)frame, sizeof(*frame)) &&
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));

Completed in 459 milliseconds

1 2 3