Searched defs:allocate (Results 1 - 25 of 47) sorted by relevance

12

/openjdk7/hotspot/test/gc/7168848/
H A DHumongousAlloc.java44 public static void allocate(int size, int sleepTime, int sleepFreq) throws InterruptedException { method in class:HumongousAlloc
45 System.out.println("Will allocate objects of size: " + size
59 allocate((int) (size * MB), sleepTime, sleepFreq);
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DXMLEventAllocator.java37 * a way to allocate events given an XMLStreamReader. An implementation
52 * allows the XMLInputFactory to allocate a new instance per reader.
62 * @param reader The XMLStreamReader to allocate from
65 public XMLEvent allocate(XMLStreamReader reader) method in interface:XMLEventAllocator
76 * @param reader The XMLStreamReader to allocate from
79 public void allocate(XMLStreamReader reader, XMLEventConsumer consumer) method in interface:XMLEventAllocator
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1AllocRegion.inline.hpp30 inline HeapWord* G1AllocRegion::allocate(HeapRegion* alloc_region, function in class:G1AllocRegion
38 return alloc_region->allocate(word_size);
H A DheapRegion.inline.hpp28 inline HeapWord* G1OffsetTableContigSpace::allocate(size_t size) { function in class:G1OffsetTableContigSpace
29 HeapWord* res = ContiguousSpace::allocate(size);
42 HeapWord* res = ContiguousSpace::allocate(size);
75 // This is how we always allocate survivors.
100 // This is how we always allocate survivors.
/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.inline.hpp37 inline HeapWord* OffsetTableContigSpace::allocate(size_t size) { function in class:OffsetTableContigSpace
38 HeapWord* res = ContiguousSpace::allocate(size);
50 // This ought to be just "allocate", because of the lock above, but that
51 // ContiguousSpace::allocate asserts that either the allocating thread
H A Dgeneration.inline.hpp46 HeapWord* OneContigSpaceCardGeneration::allocate(size_t word_size, function in class:OneContigSpaceCardGeneration
49 return the_space()->allocate(word_size);
H A DthreadLocalAllocBuffer.inline.hpp34 inline HeapWord* ThreadLocalAllocBuffer::allocate(size_t size) { function in class:ThreadLocalAllocBuffer
H A Dallocation.inline.hpp50 // allocate using malloc; will fail if no memory available
111 E* ArrayAllocator<E, F>::allocate(size_t length) { function in class:ArrayAllocator
H A Dheap.cpp186 void* CodeHeap::allocate(size_t size) { function in class:CodeHeap
/openjdk7/jdk/src/share/instrument/
H A DUtilities.c42 allocate(jvmtiEnv * jvmtienv, size_t bytecount) { function
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DXMLEventAllocatorImpl.java48 public javax.xml.stream.events.XMLEvent allocate(javax.xml.stream.XMLStreamReader xMLStreamReader) throws javax.xml.stream.XMLStreamException { method in class:XMLEventAllocatorImpl
51 // allocate is not supposed to change the state of the reader so we shouldn't be calling next.
56 public void allocate(javax.xml.stream.XMLStreamReader xMLStreamReader, javax.xml.stream.util.XMLEventConsumer xMLEventConsumer) throws javax.xml.stream.XMLStreamException { method in class:XMLEventAllocatorImpl
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlass.hpp60 typeArrayOop allocate(int length, TRAPS) { return allocate_common(length, true, THREAD); } function in class:typeArrayKlass
H A DcompiledICHolderKlass.cpp51 compiledICHolderOop compiledICHolderKlass::allocate(TRAPS) { function in class:compiledICHolderKlass
H A DcpCacheKlass.cpp51 constantPoolCacheOop constantPoolCacheKlass::allocate(int length, function in class:constantPoolCacheKlass
53 // allocate memory
H A DmethodDataKlass.cpp66 methodDataOop methodDataKlass::allocate(methodHandle method, TRAPS) { function in class:methodDataKlass
H A DmethodKlass.cpp65 methodOop methodKlass::allocate(constMethodHandle xconst, function in class:methodKlass
H A DconstMethodKlass.cpp65 constMethodOop constMethodKlass::allocate(int byte_code_size, function in class:constMethodKlass
H A DconstantPoolKlass.cpp58 constantPoolOop constantPoolKlass::allocate(int length, bool is_conc_safe, TRAPS) { function in class:constantPoolKlass
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStAXEventAllocatorBase.java41 * allows a user to register a way to allocate events given an XMLStreamReader.
71 * allows the XMLInputFactory to allocate a new instance per reader.
81 * @param streamReader The XMLStreamReader to allocate from
84 public XMLEvent allocate(XMLStreamReader streamReader) throws XMLStreamException { method in class:StAXEventAllocatorBase
94 * @param streamReader The XMLStreamReader to allocate from
97 public void allocate(XMLStreamReader streamReader, XMLEventConsumer consumer) throws XMLStreamException { method in class:StAXEventAllocatorBase
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.hpp97 HeapWord* allocate(size_t size) { function in class:PSYoungPromotionLAB
129 HeapWord* allocate(size_t size) { function in class:PSOldPromotionLAB
H A DpsYoungGen.hpp160 HeapWord* allocate(size_t word_size) { function in class:PSYoungGen
/openjdk7/jdk/src/share/demo/jvmti/agent_util/
H A Dagent_util.c228 allocate(jvmtiEnv *jvmti, jint len) function
234 check_jvmti_error(jvmti, error, "Cannot allocate memory");
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderBuffer.java84 public static RenderBuffer allocate(int numBytes) { method in class:RenderBuffer
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.cpp174 HeapWord* MutableSpace::allocate(size_t size) { function in class:MutableSpace
H A DparGCAllocBuffer.hpp76 HeapWord* allocate(size_t word_sz) { function in class:ParGCAllocBuffer
238 HeapWord* allocate(size_t word_sz) { function in class:ParGCAllocBufferWithBOT
239 HeapWord* res = ParGCAllocBuffer::allocate(word_sz);

Completed in 127 milliseconds

12