Searched refs:allocate (Results 201 - 225 of 279) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.cpp876 HeapWord* ContiguousSpace::allocate(size_t size) { function in class:ContiguousSpace
886 // allocate temporary type array decreasing free size with factor 'factor'
901 // allocate uninitialized int array
902 typeArrayOop t = (typeArrayOop) allocate(size);
910 instanceOop obj = (instanceOop) allocate(size);
923 HeapWord* EdenSpace::allocate(size_t size) { function in class:EdenSpace
H A Dspace.hpp280 virtual HeapWord* allocate(size_t word_size) = 0;
866 virtual HeapWord* allocate(size_t word_size);
1060 HeapWord* allocate(size_t word_size);
1100 virtual inline HeapWord* allocate(size_t word_size);
H A DthreadLocalAllocBuffer.hpp122 inline HeapWord* allocate(size_t size);
H A DgenCollectedHeap.cpp114 // If we are dumping the heap, then allocate a wasted block of address
135 heap_address = allocate(alignment, perm_gen_spec, &total_reserved,
145 allocate(alignment, perm_gen_spec, &total_reserved, &n_covered_regions,
199 char* GenCollectedHeap::allocate(size_t alignment, function in class:GenCollectedHeap
418 res = _gens[i]->allocate(size, is_tlab);
1398 // First give each higher generation a chance to allocate the promoted object.
1402 result = allocator->allocate(obj_size, false);
1407 // Then give gen and higher generations a chance to expand and allocate the
H A Dgeneration.cpp94 vm_exit_during_initialization("Could not allocate ReferenceProcessor object");
195 // Ignores "ref" and calls allocate().
205 HeapWord* result = allocate(obj_size, false);
399 vm_exit_during_initialization("Could not allocate a BlockOffsetArray");
520 return _the_space->allocate(word_size);
/openjdk7/hotspot/src/share/vm/oops/
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 DobjArrayKlass.cpp61 objArrayOop objArrayKlass::allocate(int length, TRAPS) { function in class:objArrayKlass
86 // If length < 0 allocate will throw an exception.
87 objArrayOop array = allocate(length, CHECK_NULL);
H A DconstMethodKlass.cpp65 constMethodOop constMethodKlass::allocate(int byte_code_size, function in class:constMethodKlass
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DShutdown.java86 ByteBuffer buffer = ByteBuffer.allocate(Util.SMALL_BUFFER);
/openjdk7/jdk/test/java/util/BitSet/
H A DImportExport.java113 LongBuffer b2 = LongBuffer.allocate(longs.length + 10);
/openjdk7/jdk/test/sun/nio/cs/
H A DFindOneCharEncoderBugs.java118 final CharBuffer ocb = CharBuffer.allocate(1);
H A DFindEncoderBugs.java187 rInBuffers[i] = CharBuffer.allocate(i);
189 rOuBuffers[i] = ByteBuffer.allocate(i);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderBuffer.java84 public static RenderBuffer allocate(int numBytes) { method in class:RenderBuffer
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java885 * pre-allocate the specified number of bytes for the next transfer.
887 * @param size The number of bytes to allocate.
892 public abstract FtpClient allocate(long size) throws FtpProtocolException, IOException; method in class:FtpClient
/openjdk7/jdk/src/share/classes/java/nio/
H A DX-Buffer.java.template74 * <p> $Type$ buffers can be created either by {@link #allocate
110 * system's native I/O operations. In general it is best to allocate direct
328 public static $Type$Buffer allocate(int capacity) {
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DBasic.java95 ByteBuffer.allocate(src.capacity());
142 ByteBuffer.allocate(src.capacity());
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.java179 ByteBuffer bb = ByteBuffer.allocate(n);
180 CharBuffer cb = CharBuffer.allocate(n);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJISAutoDetect.java162 CharBuffer sandbox = CharBuffer.allocate(cbufsiz);
189 CharBuffer sandboxSJIS = CharBuffer.allocate(cbufsiz);
/openjdk7/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java86 private ByteBuffer inBB = ByteBuffer.allocate(16);
628 private ByteBuffer fbb= ByteBuffer.allocate(0);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DPlatformFont.java419 // cache anyways, it's okay if we occasionally allocate the array
438 ByteBuffer bb = ByteBuffer.allocate(4);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp92 bool allocate(MemRegion mr);
191 bool allocate(size_t size);
1203 HeapWord* allocate(size_t size, bool tlab);
1207 return allocate(size, tlab);
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.hpp170 HeapWord* obj = to_space_alloc_buffer()->allocate(word_sz);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DparGCAllocBuffer.cpp192 res = ParGCAllocBuffer::allocate(word_sz);
233 // allocate onto that card, since that might lead to concurrent
261 // allocate onto that card, since that might lead to concurrent
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.inline.hpp131 NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
194 NOT_PRODUCT(guarantee(false, "Should not allocate with exception pending"));
237 HeapWord* obj = thread->tlab().allocate(size);

Completed in 113 milliseconds

1234567891011>>