Home
last modified time | relevance | path

Searched refs:unsignedShiftRight (Results 1 – 9 of 9) 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
DParticularLongValue.java134 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in ParticularLongValue
222 public LongValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in ParticularLongValue
DSpecificLongValue.java114 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in SpecificLongValue
206 public LongValue unsignedShiftRight(SpecificLongValue other) in unsignedShiftRight() method in SpecificLongValue
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/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java818 Method unsignedShiftRight = binaryOpMethod(int.class, in testIntBinaryOps() local
820 assertEquals(0x00abcd12, unsignedShiftRight.invoke(null, 0xabcd1234, 8)); in testIntBinaryOps()
870 Method unsignedShiftRight = binaryOpMethod( in testLongBinaryOps() local
872 assertEquals(0x00abcdef01234567L, unsignedShiftRight.invoke(null, 0xabcdef0123456789L, 8)); in testLongBinaryOps()