Home
last modified time | relevance | path

Searched refs:producerIndex (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DWorkQueue.kt52 internal val bufferSize: Int get() = producerIndex.value - consumerIndex.value
57 private val producerIndex = atomic(0) constant
85 val nextIndex = producerIndex.value and MASK in addLast()
98 producerIndex.incrementAndGet() in addLast()
122 val end = victim.producerIndex.value in tryStealBlockingFrom()
183 if (tailLocal - producerIndex.value == 0) return null in pollBuffer()
/external/proguard/src/proguard/optimize/evaluation/
DSimpleEnumUseChecker.java468 for (int producerIndex = 0; producerIndex < producerCount; producerIndex++) in checkMixedStackEntriesBefore()
471 producerOffsets.instructionOffset(producerIndex); in checkMixedStackEntriesBefore()
530 for (int producerIndex = 0; producerIndex < producerCount; producerIndex++) in checkMixedVariablesBefore()
533 producerOffsets.instructionOffset(producerIndex); in checkMixedVariablesBefore()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/flow/
DSharedFlowStressTest.kt48 jobs += List(nProducers) { producerIndex -> in <lambda>() method
50 var cur = producerIndex.toLong() in <lambda>()