AllocatedAddress
void* AllocatedAddress() const
void* allocated = chunk->AllocatedAddress();
return (addr_t)this + Chunk::fSize - (addr_t)AllocatedAddress();
FreeChunk* chunk = (FreeChunk*)((addr_t)AllocatedAddress() + splitSize);
TRACE("malloc(%lu) -> %p\n", size, chunk->AllocatedAddress());
return chunk->AllocatedAddress();
void* AllocatedAddress() const;