Searched refs:MIN_CAPACITY_INCREMENT (Results 1 – 4 of 4) sorted by relevance
31 private static final int MIN_CAPACITY_INCREMENT = 12; field in IntArray163 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()164 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()
55184 Landroid/text/AutoGrowArray;->MIN_CAPACITY_INCREMENT:I57114 Landroid/util/IntArray;->MIN_CAPACITY_INCREMENT:I57285 Landroid/util/LongArray;->MIN_CAPACITY_INCREMENT:I