Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DWorkQueue.kt182 val tailLocal = consumerIndex.value in pollBuffer() constant
183 if (tailLocal - producerIndex.value == 0) return null in pollBuffer()
184 val index = tailLocal and MASK in pollBuffer()
185 if (consumerIndex.compareAndSet(tailLocal, tailLocal + 1)) { in pollBuffer()