Searched refs:oldvalue (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/
H A DAtomic.h56 * If the value at "addr" is equal to "oldvalue", replace it with "newvalue"
59 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
H A DAtomic.cpp43 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
46 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue,
120 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
133 : "r" (addr), "Ir" (oldvalue), "r" (newvalue)
136 return prev != oldvalue;
195 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
203 if (*addr == oldvalue) {
259 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
272 if (*addr == oldvalue) {

Completed in 219 milliseconds