Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/native/
Dsun_misc_Unsafe.c69 s4 newValue = args[5]; in Dalvik_sun_misc_Unsafe_compareAndSwapInt() local
73 int result = android_atomic_release_cas(expectedValue, newValue, address); in Dalvik_sun_misc_Unsafe_compareAndSwapInt()
89 s8 newValue = GET_ARG_LONG(args, 6); in Dalvik_sun_misc_Unsafe_compareAndSwapLong() local
94 dvmQuasiAtomicCas64(expectedValue, newValue, address); in Dalvik_sun_misc_Unsafe_compareAndSwapLong()
110 Object* newValue = (Object*) args[5]; in Dalvik_sun_misc_Unsafe_compareAndSwapObject() local
115 (int32_t) newValue, address); in Dalvik_sun_misc_Unsafe_compareAndSwapObject()
/dalvik/vm/compiler/codegen/arm/
DCodegenCommon.c324 ArmLIR *newValue = dvmCompilerNew(sizeof(ArmLIR), true); in addWordData() local
325 newValue->operands[0] = value; in addWordData()
326 newValue->generic.next = cUnit->wordList; in addWordData()
327 cUnit->wordList = (LIR *) newValue; in addWordData()
328 return newValue; in addWordData()
/dalvik/vm/interp/
DJit.c525 JitEntryInfoUnion newValue; in setTraceConstruction() local
528 newValue = oldValue; in setTraceConstruction()
529 newValue.info.traceConstruction = value; in setTraceConstruction()
530 } while (android_atomic_release_cas(oldValue.infoWord, newValue.infoWord, in setTraceConstruction()
604 JitEntryInfoUnion newValue; in lookupAndAdd() local
612 newValue = oldValue; in lookupAndAdd()
613 newValue.info.chain = idx; in lookupAndAdd()
615 newValue.infoWord, in lookupAndAdd()
1029 JitEntryInfoUnion newValue; in dvmJitSetCodeAddr() local
1035 newValue = oldValue; in dvmJitSetCodeAddr()
[all …]
/dalvik/vm/
DProfile.c221 int oldValue, newValue; in updateActiveProfilers() local
225 newValue = oldValue + count; in updateActiveProfilers()
226 if (newValue < 0) { in updateActiveProfilers()
227 LOGE("Can't have %d active profilers\n", newValue); in updateActiveProfilers()
230 } while (android_atomic_release_cas(oldValue, newValue, in updateActiveProfilers()
233 LOGD("+++ active profiler count now %d\n", newValue); in updateActiveProfilers()