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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp176 size_t adjusted_size = adjustObjectSize(size); local
182 if (adjusted_size + MinChunkSize > compaction_max_size &&
183 adjusted_size != compaction_max_size) {
196 // The correct adjusted_size may not be the same as that for this method
200 adjusted_size = cp->space->adjust_object_size_v(size);
203 } while (adjusted_size > compaction_max_size);
217 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::register_live_oop(q, adjusted_size));
218 compact_top += adjusted_size;
228 cp->space->cross_threshold(compact_top - adjusted_size, compact_top);

Completed in 42 milliseconds