Lines Matching defs:base
35 assert(hb.base == (uintptr_t)HEAP_BASE);
36 assert(hb.max < hb.base);
55 assert(hb.base == 0);
82 assert(hb->base == (uintptr_t)HEAP_BASE);
83 assert(hb->max < hb->base);
353 uintptr_t base;
356 base = (uintptr_t)HEAP_BASE + offset;
358 base = (uintptr_t)HEAP_BASE + (uintptr_t)HEAP_SIZE + offset;
360 if (base < (uintptr_t)HEAP_BASE) {
361 base = (uintptr_t)HEAP_BASE;
362 } else if (base > (uintptr_t)(HEAP_BASE + HEAP_SIZE)) {
363 base = (uintptr_t)(HEAP_BASE + HEAP_SIZE);
365 base = (base + HB_OBJECT_ALIGNMENT - 1) & ~(HB_OBJECT_ALIGNMENT - 1);
368 top = base + step * NUM_XOR_PTRS;
382 for (addr = base; addr < top; addr += step) {
408 dvmHeapBitmapSetObjectBit(&hb1, (void *)base);
415 dvmHeapBitmapSetObjectBit(&hb2, (void *)base);