Searched refs:MIN_CAPACITY_INCREMENT (Results 1 – 3 of 3) sorted by relevance
32 private static final int MIN_CAPACITY_INCREMENT = 12; field in IntArray153 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()154 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity()
35 private static final int MIN_CAPACITY_INCREMENT = 12; field in LongArray140 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()141 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity()
34 private static final int MIN_CAPACITY_INCREMENT = 12; field in AutoGrowArray43 final int targetCapacity = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) in computeNewCapacity()44 ? MIN_CAPACITY_INCREMENT : currentSize >> 1); in computeNewCapacity()