HomeSort by relevance Sort by last modified time
    Searched full:isaligned (Results 26 - 50 of 88) sorted by null

12 3 4

  /art/runtime/
mem_map.cc 501 DCHECK(IsAligned<kPageSize>(begin_));
502 DCHECK(IsAligned<kPageSize>(base_begin_));
503 DCHECK(IsAligned<kPageSize>(reinterpret_cast<byte*>(base_begin_) + base_size_));
504 DCHECK(IsAligned<kPageSize>(new_end));
519 DCHECK(IsAligned<kPageSize>(tail_base_size));
utils.h 90 static inline bool IsAligned(T x) {
96 static inline bool IsAligned(T* x) {
97 return IsAligned<n>(reinterpret_cast<const uintptr_t>(x));
106 CHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
109 DCHECK(::art::IsAligned<alignment>(value)) << reinterpret_cast<const void*>(value)
class_linker_test.cc 307 CHECK(!IsAligned<4>(field->GetOffset().Uint32Value()));
    [all...]
lock_word.h 92 DCHECK(IsAligned < 1 << kStateSize>(target));
fault_handler.cc 236 if (method_obj == 0 || !IsAligned<kObjectAlignment>(method_obj)) {
250 if (!IsAligned<kObjectAlignment>(cls)) {
  /art/runtime/base/
histogram-inl.h 65 CHECK(IsAligned<2>(frequency_.size()));
  /external/chromium_org/v8/src/
frames-inl.h 243 DCHECK(IsAligned(stack_size_in_bytes, kPointerSize));
compiler.cc 37 if (!IsAligned(reinterpret_cast<intptr_t>(data), kPointerAlignment)) {
39 DCHECK(IsAligned(reinterpret_cast<intptr_t>(copy), kPointerAlignment));
    [all...]
  /external/chromium_org/mojo/public/js/bindings/
codec.js 20 function isAligned(offset) {
707 exports.isAligned = isAligned;
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 314 CHECK(IsAligned(needed_size, min_alignment));
345 if (!IsAligned(user_beg, alignment))
643 CHECK(IsAligned((uptr)ptr, alignment));
asan_poisoning.cc 278 IsAligned(beg, granularity))) {
  /art/runtime/gc/accounting/
space_bitmap.cc 75 DCHECK(IsAligned<kBitsPerWord * kAlignment>(new_end));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h     [all...]
sanitizer_common.h 315 INLINE bool IsAligned(uptr a, uptr alignment) {
  /art/runtime/gc/collector/
mark_sweep.cc 376 if (UNLIKELY(obj == nullptr || !IsAligned<kPageSize>(obj) ||
754 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_begin));
755 DCHECK(IsAligned<accounting::CardTable::kCardSize>(card_end));
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/lib/
array_internal.h 351 if (!IsAligned(data)) {
  /external/chromium_org/v8/src/heap/
objects-visiting.h 119 DCHECK(IsAligned(object_size, kPointerSize));
spaces.cc 612 IsAligned(reinterpret_cast<intptr_t>(base), MemoryChunk::kAlignment));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib32/
libasan.so 
libasan.so.0 
libasan.so.0.0.0 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 151 boolean isAligned = current == null || Boolean.valueOf(current);
153 isAligned,
    [all...]
  /art/runtime/gc/allocator/
rosalloc.cc 61 CHECK(IsAligned<kPageSize>(page_release_size_threshold_));
343 DCHECK(IsAligned<kPageSize>(fpr->ByteSize(this)));
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]
  /art/runtime/gc/
heap.cc 607 if (IsAligned<kObjectAlignment>(obj)) {
    [all...]

Completed in 703 milliseconds

12 3 4