Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DLockFreeTaskQueue.kt127 if (_state.compareAndSet(state, state.updateTail(newTail))) { in addLast()
296 fun Long.updateTail(newTail: Int) = (this wo TAIL_MASK) or (newTail.toLong() shl TAIL_SHIFT) in isClosed() method