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 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-armv5te-vfp.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-armv5te.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-armv7-a-neon.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-armv7-a.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-x86-atom.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-x86.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-allstubs.c 687 s4 firstVal, secondVal, result; \
688 firstVal = GET_REGISTER(vsrc1); \
696 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
698 result = firstVal; /* division */ \
702 result = firstVal _op secondVal; \
    [all...]
InterpC-portdbg.c 678 s4 firstVal, secondVal, result; \
679 firstVal = GET_REGISTER(vsrc1); \
687 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
689 result = firstVal; /* division */ \
693 result = firstVal _op secondVal; \
726 s4 firstVal, result;
    [all...]
InterpC-portstd.c 669 s4 firstVal, secondVal, result; \
670 firstVal = GET_REGISTER(vsrc1); \
678 if ((u4)firstVal == 0x80000000 && secondVal == -1) { \
680 result = firstVal; /* division */ \
684 result = firstVal _op secondVal; \
717 s4 firstVal, result; \
718 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]))
  /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 332 milliseconds