Searched refs:newTail (Results 1 – 5 of 5) sorted by relevance
31 val newTail = createNewSegment(cur.id + 1, cur) in <lambda>() constant32 if (cur.trySetNext(newTail)) { // successfully added new node -- move there in <lambda>()34 cur = newTail in <lambda>()
126 val newTail = (tail + 1) and MAX_CAPACITY_MASK in addLast() constant127 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()
521 RunnableExecutorPair newTail = new RunnableExecutorPair(runnable, executor);523 head = newTail;524 tail = newTail;526 tail.next = newTail;527 tail = newTail;
139 GrSubRunOwner* newTail = &subRun->fNext; in append() local141 fTail = newTail; in append()