Searched refs:MIN_CAPACITY_INCREMENT (Results 1 – 4 of 4) 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()
69850 Landroid/text/AutoGrowArray;->MIN_CAPACITY_INCREMENT:I71780 Landroid/util/IntArray;->MIN_CAPACITY_INCREMENT:I71951 Landroid/util/LongArray;->MIN_CAPACITY_INCREMENT:I