Home
last modified time | relevance | path

Searched refs:HB_OBJECT_ALIGNMENT (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/alloc/TEST/HeapBitmapTest/
Dmain.c90 HEAP_BASE + HB_OBJECT_ALIGNMENT)); in assert_empty()
92 HEAP_BASE + HEAP_SIZE - HB_OBJECT_ALIGNMENT)); in assert_empty()
99 HEAP_BASE + HB_OBJECT_ALIGNMENT)); in assert_empty()
101 HEAP_BASE + HEAP_SIZE - HB_OBJECT_ALIGNMENT)); in assert_empty()
121 HEAP_BASE + HB_OBJECT_ALIGNMENT)); in test_bits()
123 HEAP_BASE + HEAP_SIZE - HB_OBJECT_ALIGNMENT)); in test_bits()
130 HEAP_BASE + HB_OBJECT_ALIGNMENT)); in test_bits()
132 HEAP_BASE + HEAP_SIZE - HB_OBJECT_ALIGNMENT)); in test_bits()
136 dvmHeapBitmapSetObjectBit(&hb, HEAP_BASE + HEAP_SIZE - HB_OBJECT_ALIGNMENT); in test_bits()
140 HEAP_BASE + HB_OBJECT_ALIGNMENT)); in test_bits()
[all …]
/dalvik/vm/alloc/
DHeapBitmap.h22 #define HB_OBJECT_ALIGNMENT 8 macro
30 ((uintptr_t)(offset_) / HB_OBJECT_ALIGNMENT / HB_BITS_PER_WORD)
32 ((uintptr_t)(index_) * HB_OBJECT_ALIGNMENT * HB_BITS_PER_WORD)
39 (31-(((uintptr_t)(offset_) / HB_OBJECT_ALIGNMENT) % HB_BITS_PER_WORD)))
169 assert((p & (HB_OBJECT_ALIGNMENT - 1)) == 0); in HB_INLINE_PROTO()
DHeapBitmap.c215 *pb++ = (void *)(ptrBase + rshift * HB_OBJECT_ALIGNMENT); \ in dvmHeapBitmapXorWalk()
221 HB_BITS_PER_WORD * HB_OBJECT_ALIGNMENT); \ in dvmHeapBitmapXorWalk()
DMarkSweep.c1293 return !isMarked(ptr2chunk((uintptr_t)object & ~(HB_OBJECT_ALIGNMENT-1)), in isUnmarkedObject()