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

/openjdk9/jdk/src/java.base/share/classes/sun/net/www/http/
H A DChunkedOutputStream.java103 * If headerSize(adjusted_size) is shorter then headerSize(size)
104 * then try to use the extra byte unless headerSize(adjusted_size+1)
108 int adjusted_size = size - getHeaderSize(size) - FOOTER_SIZE;
109 if (getHeaderSize(adjusted_size+1) < getHeaderSize(size)){
110 adjusted_size++;
112 size = adjusted_size;
/openjdk9/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.cpp142 size_t adjusted_size = adjustObjectSize(size); local
148 if (adjusted_size + MinChunkSize > compaction_max_size &&
149 adjusted_size != compaction_max_size) {
162 // The correct adjusted_size may not be the same as that for this method
166 adjusted_size = cp->space->adjust_object_size_v(size);
169 } while (adjusted_size > compaction_max_size);
183 compact_top += adjusted_size;
193 cp->space->cross_threshold(compact_top - adjusted_size, compact_top);

Completed in 54 milliseconds