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

  /dalvik/vm/mterp/c/
opcommon.c 147 s4 firstVal, secondVal, result; \
148 firstVal = GET_REGISTER(vsrc1); \
156 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
158 result = firstVal; /* division */ \
162 result = firstVal _op secondVal; \
195 s4 firstVal, result; \
196 firstVal = GET_REGISTER(vsrc1); \
203 if ((u4)firstVal == 0x80000000 && ((s2) vsrc2) == -1) { \
206 result = firstVal; /* division */ \
210 result = firstVal _op (s2) vsrc2;
    [all...]
  /dalvik/vm/mterp/out/
InterpC-armv4t.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-armv5te-vfp.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-armv5te.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-armv7-a-neon.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-armv7-a.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-x86-atom.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-x86.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-allstubs.c 694 s4 firstVal, secondVal, result; \
695 firstVal = GET_REGISTER(vsrc1); \
703 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
705 result = firstVal; /* division */ \
709 result = firstVal _op secondVal; \
    [all...]
InterpC-portdbg.c 680 s4 firstVal, secondVal, result; \
681 firstVal = GET_REGISTER(vsrc1); \
689 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
691 result = firstVal; /* division */ \
695 result = firstVal _op secondVal; \
728 s4 firstVal, result; \
729 firstVal = GET_REGISTER(vsrc1);
    [all...]
InterpC-portstd.c 674 s4 firstVal, secondVal, result; \
675 firstVal = GET_REGISTER(vsrc1); \
683 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
685 result = firstVal; /* division */ \
689 result = firstVal _op secondVal; \
722 s4 firstVal, result; \
723 firstVal = GET_REGISTER(vsrc1); \
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.cpp 330 const TransformOperations* firstVal = operationsAt(valueList, firstIndex);
340 if (firstVal->operations().size() != val->operations().size())
343 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
344 if (!firstVal->operations().at(j)->isSameType(*val->operations().at(j)))
355 list.resize(firstVal->operations().size());
356 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
357 TransformOperation::OperationType type = firstVal->operations().at(j)->getOperationType();
365 lastRotAngle = static_cast<RotateTransformOperation*>(firstVal->operations().at(j).get())->angle();
  /external/webkit/WebCore/page/animation/
KeyframeAnimation.cpp 350 const TransformOperations* firstVal = &firstIt->style()->transform();
361 if (firstVal->operations().size() != val->operations().size())
365 for (size_t j = 0; j < firstVal->operations().size(); ++j) {
366 if (!firstVal->operations()[j]->isSameType(*val->operations()[j]))
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java 151 Object firstVal = "Gabba";
153 map.put("Gah", firstVal);
157 ht.get("Gah") == firstVal);
  /external/bison/data/
glr.c     [all...]

Completed in 493 milliseconds