Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/cintltst/
Dchashtst.c35 int32_t expectedOldValue);
341 int32_t expectedOldValue) { in _put() argument
348 } else if (oldValue != expectedOldValue) { in _put()
350 key, oldValue, expectedOldValue); in _put()
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicLongMap.java397 boolean replace(K key, long expectedOldValue, long newValue) {
398 if (expectedOldValue == 0L) {
402 return (atomic == null) ? false : atomic.compareAndSet(expectedOldValue, newValue);