HomeSort by relevance Sort by last modified time
    Searched refs:secondVal (Results 1 - 12 of 12) sorted by null

  /dalvik/vm/mterp/c/
opcommon.cpp 147 s4 firstVal, secondVal, result; \
149 secondVal = GET_REGISTER(vsrc2); \
150 if (secondVal == 0) { \
155 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
161 result = firstVal _op secondVal; \
272 s4 firstVal, secondVal, result; \
274 secondVal = GET_REGISTER(vsrc1); \
275 if (secondVal == 0) { \
280 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
286 result = firstVal _op secondVal; \
    [all...]
  /dalvik/vm/mterp/out/
InterpC-armv5te-vfp.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-armv5te.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-armv7-a-neon.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-armv7-a.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-x86-atom.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-x86.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-allstubs.cpp 653 s4 firstVal, secondVal, result; \
655 secondVal = GET_REGISTER(vsrc2); \
656 if (secondVal == 0) { \
661 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
667 result = firstVal _op secondVal; \
    [all...]
InterpC-portable.cpp 601 s4 firstVal, secondVal, result; \
603 secondVal = GET_REGISTER(vsrc2); \
604 if (secondVal == 0) { \
609 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
615 result = firstVal _op secondVal; \
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java 122 Object secondVal = new Integer(5);
124 map.put("Ooga", secondVal);
129 ht.get("Ooga") == secondVal);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashtableTest.java 99 Object secondVal = new Integer(5);
101 map.put("Ooga", secondVal);
106 ht.get("Ooga") == secondVal);
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 438 SVal secondVal = state->getSVal(Second, LCtx);
444 Loc *secondLoc = dyn_cast<Loc>(&secondVal);
477 // Switch the values so that firstVal is before secondVal.
    [all...]

Completed in 1069 milliseconds