Searched refs:BLOCK_ALIGN (Results 1 - 1 of 1) sorted by relevance

/dalvik/vm/
H A DLinearAlloc.cpp69 #define BLOCK_ALIGN 8 macro
120 * which means we have to advance to the next BLOCK_ALIGN address and
127 assert(BLOCK_ALIGN >= HEADER_EXTRA);
129 (BLOCK_ALIGN-HEADER_EXTRA) + SYSTEM_PAGE_SIZE;
290 assert(((startOffset + HEADER_EXTRA) & (BLOCK_ALIGN-1)) == 0);
296 * know we have room for that, and round up to BLOCK_ALIGN. That's
304 nextOffset = ((startOffset + HEADER_EXTRA*2 + size + (BLOCK_ALIGN-1))
305 & ~(BLOCK_ALIGN-1)) - HEADER_EXTRA;
613 & ~(BLOCK_ALIGN-1));
675 & ~(BLOCK_ALIGN
[all...]

Completed in 35 milliseconds