Home
last modified time | relevance | path

Searched refs:unsignedShiftRight (Results 1 – 10 of 10) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DIntegerValue.java148 public abstract IntegerValue unsignedShiftRight(IntegerValue other); in unsignedShiftRight() method in IntegerValue
349 public IntegerValue unsignedShiftRight(UnknownIntegerValue other) in unsignedShiftRight() method in IntegerValue
351 return unsignedShiftRight((IntegerValue)other); in unsignedShiftRight()
593 public IntegerValue unsignedShiftRight(SpecificIntegerValue other) in unsignedShiftRight() method in IntegerValue
595 return unsignedShiftRight((IntegerValue)other); in unsignedShiftRight()
837 public IntegerValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in IntegerValue
839 return unsignedShiftRight((SpecificIntegerValue)other); in unsignedShiftRight()
DLongValue.java167 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in LongValue
321 public LongValue unsignedShiftRight(SpecificLongValue other) in unsignedShiftRight() method in LongValue
477 public LongValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in LongValue
479 return unsignedShiftRight((SpecificIntegerValue)other); in unsignedShiftRight()
DSpecificIntegerValue.java139 public IntegerValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in SpecificIntegerValue
146 return other.unsignedShiftRight(this); in unsignedShiftRightOf()
161 return other.unsignedShiftRight(this); in unsignedShiftRightOf()
261 public IntegerValue unsignedShiftRight(SpecificIntegerValue other) in unsignedShiftRight() method in SpecificIntegerValue
DParticularIntegerValue.java171 public IntegerValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in ParticularIntegerValue
178 return other.unsignedShiftRight(this); in unsignedShiftRightOf()
193 return other.unsignedShiftRight(this); in unsignedShiftRightOf()
289 public IntegerValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in ParticularIntegerValue
DSpecificLongValue.java114 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in SpecificLongValue
206 public LongValue unsignedShiftRight(SpecificLongValue other) in unsignedShiftRight() method in SpecificLongValue
DParticularLongValue.java134 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in ParticularLongValue
222 public LongValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in ParticularLongValue
DUnknownLongValue.java115 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in UnknownLongValue
DUnknownIntegerValue.java141 public IntegerValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in UnknownIntegerValue
/external/turbine/java/com/google/turbine/binder/
DConstEvaluator.java589 static Const.Value unsignedShiftRight(Const.Value a, Const.Value b) { in unsignedShiftRight() method in ConstEvaluator
810 return unsignedShiftRight(lhs, rhs); in evalBinary()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java894 Method unsignedShiftRight = binaryOpMethod(int.class, in testIntBinaryOps() local
896 assertEquals(0x00abcd12, unsignedShiftRight.invoke(null, 0xabcd1234, 8)); in testIntBinaryOps()
946 Method unsignedShiftRight = binaryOpMethod( in testLongBinaryOps() local
948 assertEquals(0x00abcdef01234567L, unsignedShiftRight.invoke(null, 0xabcdef0123456789L, 8)); in testLongBinaryOps()