Home
last modified time | relevance | path

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

/external/okio/okio/src/jvmMain/kotlin/okio/
DSegmentPool.kt71 val first = firstRef().get() ?: return 0
77 val firstRef = firstRef() in take() constant
79 val first = firstRef.getAndSet(LOCK) in take()
87 firstRef.set(null) in take()
92 firstRef.set(first.next) in take()
105 val firstRef = firstRef() in recycle() constant
107 val first = firstRef.get() in recycle()
117 if (!firstRef.compareAndSet(first, segment)) { in recycle()
122 private fun firstRef(): AtomicReference<Segment?> { in firstRef() method
/external/llvm-project/lld/ELF/
DRelocations.cpp927 DenseMap<Symbol *, UndefinedDiag *> firstRef; in reportUndefinedSymbols() local
930 if (UndefinedDiag *canon = firstRef.lookup(undef.sym)) { in reportUndefinedSymbols()
934 firstRef[undef.sym] = &undef; in reportUndefinedSymbols()