Home
last modified time | relevance | path

Searched refs:MIN_CAPACITY (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUnknownFieldSetLite.java50 private static final int MIN_CAPACITY = 8; field in UnknownFieldSetLite
99 this(0, new int[MIN_CAPACITY], new Object[MIN_CAPACITY], /* isMutable= */ true); in UnknownFieldSetLite()
401 int increment = count < (MIN_CAPACITY / 2) ? MIN_CAPACITY : count >> 1; in ensureCapacity()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DConcurrentWeakMap.kt23 private val core = atomic(Core(MIN_CAPACITY)) in <lambda>()
167 val newCapacity = size.coerceAtLeast(MIN_CAPACITY / 4).takeHighestOneBit() * 4 in <lambda>()
254 private const val MIN_CAPACITY = 16 constant