< prev index next >

src/share/vm/memory/allocation.inline.hpp

Print this page

        

*** 147,157 **** template <class E, MEMFLAGS F> size_t MmapArrayAllocator<E, F>::size_for(size_t length) { size_t size = length * sizeof(E); int alignment = os::vm_allocation_granularity(); ! return align_size_up(size, alignment); } template <class E, MEMFLAGS F> E* MmapArrayAllocator<E, F>::allocate_or_null(size_t length) { size_t size = size_for(length); --- 147,157 ---- template <class E, MEMFLAGS F> size_t MmapArrayAllocator<E, F>::size_for(size_t length) { size_t size = length * sizeof(E); int alignment = os::vm_allocation_granularity(); ! return align_up(size, alignment); } template <class E, MEMFLAGS F> E* MmapArrayAllocator<E, F>::allocate_or_null(size_t length) { size_t size = size_for(length);
< prev index next >