HomeSort by relevance Sort by last modified time
    Searched defs:oldValue (Results 1 - 25 of 62) sorted by null

1 2 3

  /bionic/libc/arch-sh/bionic/
atomics_sh.c 65 int oldValue;
67 oldValue = *ptr;
68 } while (__atomic_cmpxchg(oldValue, _new, ptr));
69 return oldValue;
74 int oldValue;
76 oldValue = *ptr;
77 } while (__atomic_cmpxchg(oldValue, oldValue-1, ptr));
78 return oldValue;
83 int32_t oldValue;
    [all...]
  /dalvik/vm/
Atomic.c 43 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
46 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue,
52 int64_t oldValue;
54 oldValue = *addr;
55 } while (dvmQuasiAtomicCas64(oldValue, value, addr));
56 return oldValue;
87 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
100 : "r" (addr), "Ir" (oldvalue), "r" (newvalue)
103 return prev != oldvalue;
144 int64_t oldValue;
    [all...]
  /external/webkit/WebCore/storage/
StorageEvent.h 41 static PassRefPtr<StorageEvent> create(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
44 const String& oldValue() const { return m_oldValue; }
49 void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
58 StorageEvent(const AtomicString& type, const String& key, const String& oldValue, const String& newValue, const String& uri, Storage* storageArea);
StorageAreaImpl.cpp 142 String oldValue;
144 RefPtr<StorageMap> newMap = m_storageMap->setItem(key, value, oldValue, quotaException);
150 return oldValue;
153 if (oldValue == value)
154 return oldValue;
158 StorageEventDispatcher::dispatch(key, oldValue, value, m_storageType, m_securityOrigin.get(), frame);
159 return oldValue;
170 String oldValue;
171 RefPtr<StorageMap> newMap = m_storageMap->removeItem(key, oldValue);
175 if (oldValue.isNull()
    [all...]
  /libcore/luni/src/main/java/java/beans/
PropertyChangeEvent.java 32 Object oldValue;
46 * @param oldValue
56 Object oldValue, Object newValue) {
60 this.oldValue = oldValue;
102 return oldValue;
  /packages/apps/Email/src/org/apache/commons/io/input/
DemuxInputStream.java 42 InputStream oldValue = getStream();
44 return oldValue;
  /external/webkit/WebKit/chromium/src/
StorageAreaProxy.cpp 77 WebKit::WebString oldValue;
78 m_storageArea->setItem(key, value, frame->document()->url(), quotaException, oldValue);
80 String oldValueString = oldValue;
82 storageEvent(key, oldValue, value, m_storageType, frame->document()->securityOrigin(), frame);
83 return oldValue;
88 WebKit::WebString oldValue;
89 m_storageArea->removeItem(key, frame->document()->url(), oldValue);
90 if (!oldValue.isNull())
91 storageEvent(key, oldValue, String(), m_storageType, frame->document()->securityOrigin(), frame);
92 return oldValue;
    [all...]
  /system/core/libcutils/
atomic-android-sh.c 63 int32_t oldValue;
65 oldValue = *addr;
66 } while (android_atomic_release_cas(oldValue, value, addr));
70 int32_t oldValue;
72 oldValue = *addr;
73 } while (android_atomic_release_cas(oldValue, value, addr));
77 int32_t oldValue;
79 oldValue = *addr;
80 } while (android_atomic_release_cas(oldValue, oldValue+1, addr))
    [all...]
  /external/srec/portable/src/
PANSIFileSystemImpl.c 160 LCHAR* oldValue;
162 CHKLOG(rc, PHashTableGetValue(impl->directoryMap, key, (void **)&oldValue));
163 if (LSTRCMP(oldValue, value) != 0)
  /cts/tests/tests/util/src/android/util/cts/
SparseArrayTest.java 127 Integer oldValue = VALUES[0]; // 0
129 assertEquals(oldValue, sparseArray.get(existKey));
264 Integer oldValue = VALUES[0]; // 0
266 assertEquals(oldValue, sparseArray.get(existKey));
SparseIntArrayTest.java 134 int oldValue = VALUES[0]; // 0
136 assertEquals(oldValue, sparseIntArray.get(existKey));
256 int oldValue = VALUES[0]; // 0
258 assertEquals(oldValue, sparseIntArray.get(existKey));
  /external/chromium/third_party/icu/source/test/cintltst/
chashtst.c 341 int32_t oldValue =
345 key, u_errorName(status), oldValue);
346 } else if (oldValue != expectedOldValue) {
348 key, oldValue, expectedOldValue);
351 key, value, oldValue);
  /external/icu4c/test/cintltst/
chashtst.c 341 int32_t oldValue =
345 key, u_errorName(status), oldValue);
346 } else if (oldValue != expectedOldValue) {
348 key, oldValue, expectedOldValue);
351 key, value, oldValue);
  /external/webkit/WebCore/dom/
InputElement.cpp 214 String oldValue = data.value();
215 String newValue = sanitizeValue(inputElement, oldValue);
216 if (newValue != oldValue)
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplaySyncHistogram.java 138 double oldValue = tpv[auth].getValue(index).doubleValue();
139 tpv[auth].update(index, oldValue + value);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
MultiResourceFile.java 148 ResourceValue oldValue = list.get(value.getName());
150 if (oldValue != null) {
151 oldValue.replaceWith(value);
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 111 V oldValue = delegate.put(key, value);
112 updateInverseMap(key, containedKey, oldValue, value);
113 return oldValue;
117 K key, boolean containedKey, V oldValue, V newValue) {
119 removeFromInverseMap(oldValue);
129 V oldValue = delegate.remove(key);
130 removeFromInverseMap(oldValue);
131 return oldValue;
134 private void removeFromInverseMap(V oldValue) {
135 inverse.delegate.remove(oldValue);
    [all...]
  /external/guava/src/com/google/common/primitives/
Chars.java 504 char oldValue = array[start + index];
506 return oldValue;
Doubles.java 440 double oldValue = array[start + index];
442 return oldValue;
Floats.java 437 float oldValue = array[start + index];
439 return oldValue;
Ints.java 511 int oldValue = array[start + index];
513 return oldValue;
Longs.java 489 long oldValue = array[start + index];
491 return oldValue;
Shorts.java 503 short oldValue = array[start + index];
505 return oldValue;
  /external/webkit/WebCore/platform/
Scrollbar.cpp 287 int oldValue = value();
294 if (value() != oldValue && client())
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 204 final Object oldValue = map.remove(propertyName);
205 if (oldValue != null) {
208 if (value.getClass() != oldValue.getClass()) {

Completed in 778 milliseconds

1 2 3