Searched refs:new_chunk (Results 1 - 3 of 3) sorted by relevance

/openjdk10/hotspot/src/share/vm/memory/
H A Dmetaspace.cpp2478 void SpaceManager::add_chunk(Metachunk* new_chunk, bool make_current) {
2480 assert(new_chunk != NULL, "Should not be NULL");
2481 assert(new_chunk->next() == NULL, "Should not be on a list");
2483 new_chunk->reset_empty();
2487 ChunkIndex index = chunk_manager()->list_index(new_chunk->word_size());
2491 set_current_chunk(new_chunk);
2492 new_chunk->set_next(chunks_in_use(index));
2493 set_chunks_in_use(index, new_chunk);
2500 set_current_chunk(new_chunk);
2506 new_chunk
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1ConcurrentMark.cpp215 TaskQueueEntryChunk* new_chunk = remove_chunk_from_free_list(); local
217 if (new_chunk == NULL) {
219 new_chunk = allocate_new_chunk();
221 if (new_chunk == NULL) {
226 Copy::conjoint_memory_atomic(ptr_arr, new_chunk->data, EntriesPerChunk * sizeof(G1TaskQueueEntry));
228 add_chunk_to_chunk_list(new_chunk);
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.cpp1769 FreeChunk* new_chunk = splitChunkAndReturnRemainder(curr, numWords); local
1772 assert(new_chunk == NULL || new_chunk->is_free(),
1774 return new_chunk;

Completed in 74 milliseconds