Home | History | Annotate | Download | only in collect

Lines Matching defs:maxSegmentSize

1936   Segment<K, V> createSegment(int initialCapacity, int maxSegmentSize) {
1937 return new Segment<K, V>(this, initialCapacity, maxSegmentSize);
2099 final int maxSegmentSize;
2140 Segment(MapMakerInternalMap<K, V> map, int initialCapacity, int maxSegmentSize) {
2142 this.maxSegmentSize = maxSegmentSize;
2170 if (this.threshold == maxSegmentSize) {
2412 if (map.evictsBySize() && count >= maxSegmentSize) {