Searched refs:MIN_CAPACITY_INCREMENT (Results 1 – 4 of 4) sorted by relevance
32 private static final int MIN_CAPACITY_INCREMENT = 12; field in IntArray164 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()165 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity()
36 private static final int MIN_CAPACITY_INCREMENT = 12; field in LongArray141 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()142 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()
55827 Landroid/text/AutoGrowArray;->MIN_CAPACITY_INCREMENT:I57757 Landroid/util/IntArray;->MIN_CAPACITY_INCREMENT:I57928 Landroid/util/LongArray;->MIN_CAPACITY_INCREMENT:I