Searched defs:next_alloc_addr (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp2825 char * next_alloc_addr = p_buf; local
2838 size_t bytes_to_rq = MIN2(bytes_remaining, chunk_size - ((size_t)next_alloc_addr % chunk_size));
2852 p_new = (char *) VirtualAlloc(next_alloc_addr,
2861 next_alloc_addr,
2871 if (next_alloc_addr > p_buf) {
2892 next_alloc_addr += bytes_to_rq;
3154 char * next_alloc_addr = addr; local
3157 VirtualQuery(next_alloc_addr, &alloc_info, sizeof(alloc_info));
3159 if (VirtualAlloc(next_alloc_addr, bytes_to_rq, MEM_COMMIT,
3161 NOT_PRODUCT(warn_fail_commit_memory(next_alloc_addr, bytes_to_r
[all...]

Completed in 38 milliseconds