Home | History | Annotate | Download | only in heap

Lines Matching refs:allocationSize

222         size_t allocationSize = size + blinkPageSize;
223 base = static_cast<Address>(mmap(alignedRandomAddress, allocationSize, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0));
226 Address end = base + allocationSize;
254 size_t allocationSize = size + blinkPageSize;
256 base = static_cast<Address>(VirtualAlloc(0, allocationSize, MEM_RESERVE, PAGE_NOACCESS));
270 base = static_cast<Address>(VirtualAlloc(0, allocationSize, MEM_RESERVE, PAGE_NOACCESS));
344 size_t allocationSize = payloadSize + 2 * osPageSize();
345 PageMemoryRegion* pageMemoryRegion = PageMemoryRegion::allocate(allocationSize, 1);
632 size_t allocationSize = allocationSizeFromSize(size);
639 ensureCurrentAllocation(allocationSize, gcInfo);
917 size_t allocationSize = sizeof(LargeHeapObject<Header>) + size;
922 allocationSize += headerPadding<Header>();
927 allocationSize += allocationGranularity;
932 PageMemory* pageMemory = PageMemory::allocate(allocationSize);