Home
last modified time | relevance | path

Searched refs:oldTop (Results 1 – 2 of 2) sorted by relevance

/external/kotlinx.atomicfu/atomicfu/src/nativeMain/kotlin/kotlinx/atomicfu/locks/
DSynchronized.kt203 val oldTop = interpretCPointer<mutex_node_t>(top.value) in allocate() constant
204 mutexNode.pointed.next = oldTop in allocate()
205 if (top.compareAndSet(oldTop.rawValue, mutexNode.rawValue)) in allocate()
212 val oldTop = interpretCPointer<mutex_node_t>(top.value) in pop() constant
213 if (oldTop.rawValue === NativePtr.NULL) in pop()
215 val newHead = oldTop!!.pointed.next in pop()
216 if (top.compareAndSet(oldTop.rawValue, newHead.rawValue)) in pop()
217 return oldTop in pop()
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DPlayerView.java1598 int oldTop, in onLayoutChange() argument