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

/dalvik/vm/
H A DAtomic.h59 * If the value at "addr" is equal to "oldvalue", replace it with "newvalue"
62 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue,
H A DAtomic.cpp83 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
96 : "r" (addr), "Ir" (oldvalue), "r" (newvalue)
99 return prev != oldvalue;
119 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
122 return OSAtomicCompareAndSwap64Barrier(oldvalue, newvalue,
216 int dvmQuasiAtomicCas64(int64_t oldvalue, int64_t newvalue, argument
224 if (*addr == oldvalue) {

Completed in 93 milliseconds