Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DConcurrentLinkedList.kt31 val newTail = createNewSegment(cur.id + 1, cur) in <lambda>() constant
32 if (cur.trySetNext(newTail)) { // successfully added new node -- move there in <lambda>()
34 cur = newTail in <lambda>()
DLockFreeTaskQueue.kt126 val newTail = (tail + 1) and MAX_CAPACITY_MASK in addLast() constant
127 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()
/external/guava/android/guava-tests/benchmark/com/google/common/util/concurrent/
DExecutionListBenchmark.java521 RunnableExecutorPair newTail = new RunnableExecutorPair(runnable, executor);
523 head = newTail;
524 tail = newTail;
526 tail.next = newTail;
527 tail = newTail;
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DExecutionListBenchmark.java521 RunnableExecutorPair newTail = new RunnableExecutorPair(runnable, executor);
523 head = newTail;
524 tail = newTail;
526 tail.next = newTail;
527 tail = newTail;
/external/skia/src/gpu/text/
DGrTextBlob.h139 GrSubRunOwner* newTail = &subRun->fNext; in append() local
141 fTail = newTail; in append()