Home | History | Annotate | Download | only in alloc

Lines Matching defs:aligned

587     size_t aligned, available, blocks;
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;