Home
last modified time | relevance | path

Searched refs:describeAddLast (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/
DLockFreeLinkedListTest.kt54 val n1 = IntNode(1).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle()
56 val n2 = IntNode(2).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle()
58 val n3 = IntNode(3).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle()
60 val n4 = IntNode(4).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle()
DLockFreeLinkedListAtomicLFStressTest.kt123 val add1 = list1.describeAddLast(node1) in <lambda>()
124 val add2 = list2.describeAddLast(node2) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DLockFreeLinkedList.kt144 public fun <T : Node> describeAddLast(node: T): AddLastDesc<T> = AddLastDesc(this, node) in <lambda>() method in kotlinx.coroutines.internal.LockFreeLinkedListNode