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

  /dalvik/vm/compiler/codegen/arm/Thumb/
Factory.cpp 198 int absValue = (neg) ? -value : value;
199 bool shortForm = (absValue & 0xff) == absValue;
238 res = newLIR2(cUnit, opcode, rDestSrc1, absValue);
283 int absValue = (neg) ? -value : value;
285 bool shortForm = (absValue & 0x7) == absValue;
302 } else if ((absValue > 0) && (absValue <= (255 + 7))) {
307 newLIR2(cUnit, opcode, rDest, absValue - 7)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 314 double absValue = Math.abs(value);
315 if (absValue != 0.0 && !Double.isInfinite(value) && !Double.isNaN(value)) {
316 if (absValue < Float.MIN_VALUE || absValue > Float.MAX_VALUE) {
  /dalvik/vm/compiler/codegen/arm/Thumb2/
Factory.cpp 503 int absValue = (neg) ? -value : value;
542 if (allLowRegs && ((absValue & 0x7) == absValue)) {
547 return newLIR3(cUnit, opcode, rDest, rSrc1, absValue);
548 } else if ((absValue & 0xff) == absValue) {
553 return newLIR3(cUnit, opcode, rDest, rSrc1, absValue);
625 int absValue = (neg) ? -value : value;
626 bool shortForm = (((absValue & 0xff) == absValue) && LOWREG(rDestSrc1))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java 282 final int absValue = Math.abs(value);
283 buffer.put((byte)(((value < 0 ? 0x80 : 0) | (absValue >> 16)) & 0xFF));
284 buffer.put((byte)((absValue >> 8) & 0xFF));
285 buffer.put((byte)(absValue & 0xFF));
294 final int absValue = Math.abs(value);
295 destination.write((byte)(((value < 0 ? 0x80 : 0) | (absValue >> 16)) & 0xFF));
296 destination.write((byte)((absValue >> 8) & 0xFF));
297 destination.write((byte)(absValue & 0xFF));
    [all...]
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 789 RealScalar absValue = internal::abs(coeff(i,j));
790 if(absValue > maxAbsOnUpperPart) maxAbsOnUpperPart = absValue;
812 RealScalar absValue = internal::abs(coeff(i,j));
813 if(absValue > maxAbsOnLowerPart) maxAbsOnLowerPart = absValue;
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 650 final int absValue = Math.abs(value);
651 if (absValue < absMin) return 0;
652 if (absValue > absMax) return value > 0 ? absMax : -absMax;
667 final float absValue = Math.abs(value);
668 if (absValue < absMin) return 0;
669 if (absValue > absMax) return value > 0 ? absMax : -absMax;
    [all...]
  /dalvik/vm/compiler/codegen/mips/Mips32/
Factory.cpp 206 int absValue = (neg) ? -value : value;
207 bool shortForm = (absValue & 0xff) == absValue;
222 res = newLIR2(cUnit, opcode, rDestSrc1, absValue);
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 

Completed in 128 milliseconds