Searched refs:TAIL_MASK (Results 1 – 1 of 1) sorted by relevance
279 const val TAIL_MASK = MAX_CAPACITY_MASK.toLong() shl TAIL_SHIFT in isClosed() constant296 fun Long.updateTail(newTail: Int) = (this wo TAIL_MASK) or (newTail.toLong() shl TAIL_SHIFT) in isClosed()300 val tail = ((this and TAIL_MASK) shr TAIL_SHIFT).toInt() in isClosed()