Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DConcurrentLinkedList.kt32 val newTail = createNewSegment(cur.id + 1, cur) in <lambda>() constant
33 if (cur.trySetNext(newTail)) { // successfully added new node -- move there in <lambda>()
35 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/openthread/src/lib/spinel/
Dspinel_buffer.cpp227 uint8_t *newTail; in InFrameAppend() local
231 newTail = GetUpdatedBufPtr(mWriteSegmentTail, 1, mWriteDirection); in InFrameAppend()
234 if (newTail != mWriteFrameStart[(mWriteDirection == kForward) ? kBackward : kForward]) in InFrameAppend()
237 mWriteSegmentTail = newTail; in InFrameAppend()
/external/skia/src/text/gpu/
DSubRunContainer.h214 SubRunOwner* newTail = &subRun->fNext; in append() local
216 fTail = newTail; in append()