Searched refs:allocate (Results 151 - 175 of 279) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/Buffer/
H A DBasic-X.java.template123 $Type$Buffer c = $Type$Buffer.allocate(n + 7);
150 $Type$Buffer nondirect1 = ByteBuffer.allocate(cap).as$Type$Buffer();
154 $Type$Buffer nondirect2 = ByteBuffer.allocate(cap).as$Type$Buffer();
161 $Type$Buffer nondirect3 = ByteBuffer.allocate(cap).as$Type$Buffer();
162 $Type$Buffer nondirect4 = ByteBuffer.allocate(cap).as$Type$Buffer();
510 $Type$Buffer b2 = $Type$Buffer.allocate(b.capacity());
762 ? $Type$Buffer.allocate(rb.capacity())
898 $Type$Buffer.allocate(-1);
910 test(0, $Type$Buffer.allocate(7 * 1024), false);
923 callReset($Type$Buffer.allocate(1
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp146 // We need to allocate a chunk big enough to hold the OopMapSet and all of its OopMaps
248 void* p = CodeCache::allocate(size);
350 void* p = CodeCache::allocate(size);
357 void* p = CodeCache::allocate(size);
H A DcodeCache.hpp77 static CodeBlob* allocate(int size); // allocates a new CodeBlob
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp171 jvmtiError allocate(jlong size, unsigned char** mem_ptr) { function in class:JvmtiEnvBase
195 unsigned char* jvmtiMalloc(jlong size); // don't use this - call allocate
561 // using the resource tracker are recorded. If an allocate using the
572 // err = rt.allocate(1024, &ptr);
582 jvmtiError allocate(jlong size, unsigned char** mem_ptr);
583 unsigned char* allocate(jlong size);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableNUMASpace.hpp56 * allocate a large page from the remote locality group even if there are small
222 virtual HeapWord* allocate(size_t word_size);
H A DvmGCOperations.cpp222 _res = heap->perm_gen()->allocate(_size, false);
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp200 _NOINLINE_ void* allocate(size_t bytes, AllocFailType alloc_failmode) { function in class:ChunkPool
211 vm_exit_out_of_memory(bytes, "ChunkPool::allocate");
317 case Chunk::size: return ChunkPool::large_pool()->allocate(bytes, alloc_failmode);
318 case Chunk::medium_size: return ChunkPool::medium_pool()->allocate(bytes, alloc_failmode);
319 case Chunk::init_size: return ChunkPool::small_pool()->allocate(bytes, alloc_failmode);
516 // always allocate a new object (otherwise we'll free this one twice)
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.hpp135 void* allocate (size_t size); // allocates a block of size or returns NULL
/openjdk7/hotspot/src/share/vm/oops/
H A DcompiledICHolderKlass.cpp51 compiledICHolderOop compiledICHolderKlass::allocate(TRAPS) { function in class:compiledICHolderKlass
H A DobjArrayKlass.hpp62 objArrayOop allocate(int length, TRAPS);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMib.java82 list = allocate(initialCapacity);
206 final long[] newlist = allocate(list.length + DELTA);
222 final long[] newlist = allocate(length);
231 private final long[] allocate(final int length) { method in class:LongList
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.hpp188 void allocate();
/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.cpp72 return allocate(size, false, mtNMT);
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DLotsOfWrites.java59 ByteBuffer buf = ByteBuffer.allocate(n);
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DWrite.java114 ByteBuffer dst = ByteBuffer.allocate(10);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DChangingInterests.java62 ByteBuffer buf = ByteBuffer.allocate(100);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DAsyncCloseChannel.java190 ByteBuffer b = ByteBuffer.allocate(1);
H A DVectorParams.java58 bufs[i] = ByteBuffer.allocate(source.length());
/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java630 ByteBuffer bbSrc = ByteBuffer.allocate(8192);
631 ByteBuffer bbDst = ByteBuffer.allocate(8192);
668 ByteBuffer bb = ByteBuffer.allocate(8192);
688 ByteBuffer bb = ByteBuffer.allocate(8192);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineOutputRecord.java165 ByteBuffer.allocate(len).put(buf, 0, len).flip();
/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/test/java/util/zip/
H A DFlaterTest.java54 ByteBuffer bb = ByteBuffer.allocate(8);
H A DInflaterBufferSize.java48 ByteBuffer bb = ByteBuffer.allocate(8);
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DLargeZipFile.java89 ByteBuffer bb = ByteBuffer.allocate(DATA_SIZE);

Completed in 86 milliseconds

1234567891011>>