Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DLockFreeTaskQueue.kt51 Core.ADD_FROZEN -> _cur.compareAndSet(cur, cur.next()) // move to next in <lambda>()
111 … if ((tail + 2) and mask == head and mask) return ADD_FROZEN // overfull, so do freeze & copy in addLast()
121 return ADD_FROZEN in addLast()
291 const val ADD_FROZEN = 1 in isClosed() constant
305 fun Long.addFailReason(): Int = if (this and CLOSED_MASK != 0L) ADD_CLOSED else ADD_FROZEN in isClosed()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DEventLoop.common.kt301 Queue.ADD_FROZEN -> _queue.compareAndSet(queue, queue.next()) in enqueueImpl()