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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp179 void* real_malloc_addr = throw_excpt? AllocateHeap(aligned_size, flags, CURRENT_PC) local
181 void* aligned_addr = (void*) align_size_up((intptr_t) real_malloc_addr, alignment);
183 ((uintptr_t) real_malloc_addr + (uintptr_t) aligned_size),
186 if (aligned_addr != real_malloc_addr)
188 real_malloc_addr, aligned_addr);
190 ((Thread*) aligned_addr)->_real_malloc_address = real_malloc_addr;
200 void* real_malloc_addr = ((Thread*) p)->_real_malloc_address; local
201 FreeHeap(real_malloc_addr, mtThread);

Completed in 194 milliseconds