Searched defs:newValue (Results 1 - 6 of 6) sorted by relevance

/dalvik/vm/native/
H A Dsun_misc_Unsafe.cpp60 * int expectedValue, int newValue);
69 s4 newValue = args[5]; local
73 int result = android_atomic_release_cas(expectedValue, newValue, address);
80 * long expectedValue, long newValue);
89 s8 newValue = GET_ARG_LONG(args, 6); local
94 dvmQuasiAtomicCas64(expectedValue, newValue, address);
101 * Object expectedValue, Object newValue);
110 Object* newValue = (Object*) args[5]; local
115 (int32_t) newValue, address);
136 * public native void putIntVolatile(Object obj, long offset, int newValue);
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DCodegenCommon.cpp382 ArmLIR *newValue = (ArmLIR *) dvmCompilerNew(sizeof(ArmLIR), true); local
383 newValue->operands[0] = value;
384 newValue->generic.next = *constantListP;
385 *constantListP = (LIR *) newValue;
386 return newValue;
/dalvik/vm/
H A DProfile.cpp241 int oldValue, newValue; local
246 newValue = oldValue + (enable ? 1 : -1);
247 if (newValue < 0) {
248 ALOGE("Can't have %d active profilers", newValue);
251 } while (android_atomic_release_cas(oldValue, newValue,
265 ALOGD("+++ active profiler count now %d", newValue);
/dalvik/vm/jdwp/
H A DJdwpEvent.cpp1227 bool modified, JValue newValue)
1226 dvmJdwpPostFieldAccess(JdwpState* state, int STUFF, ObjectId thisPtr, bool modified, JValue newValue) argument
/dalvik/vm/interp/
H A DInterp.cpp1456 InterpBreak oldValue, newValue; local
1458 oldValue = newValue = thread->interpBreak;
1459 newValue.ctl.breakFlags = kInterpNoBreak; // Assume full reset
1461 newValue.ctl.subMode |= subMode;
1463 newValue.ctl.subMode &= ~subMode;
1464 if (newValue.ctl.subMode & SINGLESTEP_BREAK_MASK)
1465 newValue.ctl.breakFlags |= kInterpSingleStep;
1466 if (newValue.ctl.subMode & SAFEPOINT_BREAK_MASK)
1467 newValue.ctl.breakFlags |= kInterpSafePoint;
1469 newValue
[all...]
H A DJit.cpp623 JitEntryInfoUnion newValue; local
631 newValue = oldValue;
632 newValue.info.chain = idx;
634 newValue.infoWord,
1125 JitEntryInfoUnion newValue; local
1138 newValue = oldValue;
1139 newValue.info.isMethodEntry = isMethodEntry;
1140 newValue.info.instructionSet = set;
1141 newValue.info.profileOffset = profilePrefixSize;
1143 oldValue.infoWord, newValue
[all...]

Completed in 664 milliseconds