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

/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.cpp58 void* GenericGrowableArray::raw_allocate(int elementSize) { function in class:GenericGrowableArray
H A DgrowableArray.hpp141 void* raw_allocate(int elementSize);
144 void* raw_allocate(Thread* thread, int elementSize) { function in class:GenericGrowableArray
161 _data = (E*)raw_allocate(thread, sizeof(E));
167 _data = (E*)raw_allocate(sizeof(E));
173 _data = (E*)raw_allocate(sizeof(E));
180 _data = (E*)raw_allocate(sizeof(E));
187 _data = (E*)raw_allocate(sizeof(E));
360 E* newData = (E*)raw_allocate(sizeof(E));
/openjdk7/hotspot/src/share/vm/services/
H A DmemPtrArray.hpp162 _data = (E*)raw_allocate(sizeof(E), initial_size);
293 void* raw_allocate(size_t elementSize, int items) { function in class:MemPointerArrayImpl

Completed in 31 milliseconds