Searched refs:bytes_to_rq (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp2817 // instead we handle this in the bytes_to_rq computation below
2836 // select bytes_to_rq to get to the next chunk_size boundary
2838 size_t bytes_to_rq = MIN2(bytes_remaining, chunk_size - ((size_t)next_alloc_addr % chunk_size)); local
2853 bytes_to_rq,
2862 bytes_to_rq,
2891 bytes_remaining -= bytes_to_rq;
2892 next_alloc_addr += bytes_to_rq;
3158 size_t bytes_to_rq = MIN2(bytes_remaining, (size_t)alloc_info.RegionSize); local
3159 if (VirtualAlloc(next_alloc_addr, bytes_to_rq, MEM_COMMIT,
3161 NOT_PRODUCT(warn_fail_commit_memory(next_alloc_addr, bytes_to_rq,
[all...]

Completed in 234 milliseconds