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

/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.cpp64 return (void*)AllocateHeap(byte_size, _memflags);
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.inline.hpp51 inline char* AllocateHeap(size_t size, MEMFLAGS flags, address pc = 0, function
58 if (PrintMallocFree) trace_heap_malloc(size, "AllocateHeap", p);
61 vm_exit_out_of_memory(size, "AllocateHeap");
87 void* p = (void*)AllocateHeap(size, F, (caller_pc != 0 ? caller_pc : CALLER_PC));
91 return (void *) AllocateHeap(size, F, (caller_pc != 0 ? caller_pc : CALLER_PC));
118 _addr = AllocateHeap(_size, F);
H A Dallocation.cpp58 res = (address)AllocateHeap(size, flags, CALLER_PC);
428 void* p = (void*)AllocateHeap(size, flags|otArena, CALLER_PC);
432 return (void *) AllocateHeap(size, flags|otArena, CALLER_PC);
629 return (void *) AllocateHeap(size, "global operator new");
H A Dallocation.hpp91 // char* AllocateHeap(size_t size, const char* name);
531 (type*) (AllocateHeap((size) * sizeof(type), memflags))
544 (type*) (AllocateHeap((size) * sizeof(type), memflags, pc))
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.hpp66 _value = AllocateHeap(strlen(value)+1, mtInternal);
83 sp = AllocateHeap(len+2, mtInternal);
103 _key = AllocateHeap(strlen(key)+1, mtInternal);
109 _value = AllocateHeap(strlen(value)+1, mtInternal);
139 _name = AllocateHeap(strlen(name)+1, mtInternal);
144 _options = AllocateHeap(strlen(options)+1, mtInternal);
H A Dpark.cpp144 return (void *) ((intptr_t (AllocateHeap(sz + 256, mtInternal, CALLER_PC)) + 256) & -256) ;
H A DvframeArray.cpp449 vframeArray * result = (vframeArray*) AllocateHeap(sizeof(vframeArray) + // fixed part
H A Dfprofiler.cpp73 area_bottom = AllocateHeap(area_size, mtInternal);
H A Dthread.cpp179 void* real_malloc_addr = throw_excpt? AllocateHeap(aligned_size, flags, CURRENT_PC)
193 return throw_excpt? AllocateHeap(size, flags, CURRENT_PC)
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.cpp41 address res = (address) AllocateHeap(alloc_size, mtSymbol);
/openjdk7/hotspot/src/share/vm/prims/
H A DjniCheck.cpp1311 jint* tagLocation = (jint*) AllocateHeap(len * sizeof(jchar) + sizeof(jint), mtInternal);
1381 jint* tagLocation = (jint*) AllocateHeap(len + sizeof(jint), mtInternal);
H A Djni.cpp3363 char* result = AllocateHeap(length + 1, mtInternal);

Completed in 1606 milliseconds