Searched defs:absValue (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp198 int absValue = (neg) ? -value : value; local
199 bool shortForm = (absValue & 0xff) == absValue;
238 res = newLIR2(cUnit, opcode, rDestSrc1, absValue);
283 int absValue = (neg) ? -value : value; local
285 bool shortForm = (absValue & 0x7) == absValue;
302 } else if ((absValue > 0) && (absValue <= (255 + 7))) {
307 newLIR2(cUnit, opcode, rDest, absValue
[all...]
/dalvik/vm/compiler/codegen/mips/Mips32/
H A DFactory.cpp206 int absValue = (neg) ? -value : value; local
207 bool shortForm = (absValue & 0xff) == absValue;
222 res = newLIR2(cUnit, opcode, rDestSrc1, absValue);
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp496 int absValue = (neg) ? -value : value; local
535 if (allLowRegs && ((absValue & 0x7) == absValue)) {
540 return newLIR3(cUnit, opcode, rDest, rSrc1, absValue);
541 } else if ((absValue & 0xff) == absValue) {
546 return newLIR3(cUnit, opcode, rDest, rSrc1, absValue);
618 int absValue = (neg) ? -value : value; local
619 bool shortForm = (((absValue & 0xff) == absValue)
[all...]

Completed in 559 milliseconds