Searched defs:aligned (Results 1 - 1 of 1) sorted by relevance

/dalvik/vm/alloc/
H A DCopying.cpp587 size_t aligned, available, blocks; local
594 aligned = alignUp(length, ALLOC_ALIGNMENT);
598 if (aligned <= available) {
600 heapSource->allocPtr += aligned;
601 heapSource->bytesAllocated += aligned;
607 if (aligned <= BLOCK_SIZE) {
611 heapSource->allocPtr = addr + aligned;
612 heapSource->bytesAllocated += aligned;
620 blocks = alignUp(aligned, BLOCK_SIZE) / BLOCK_SIZE;
625 heapSource->bytesAllocated += aligned;
[all...]

Completed in 248 milliseconds