Searched refs:unsignedShiftRight (Results 1 – 10 of 10) sorted by relevance
148 public abstract IntegerValue unsignedShiftRight(IntegerValue other); in unsignedShiftRight() method in IntegerValue349 public IntegerValue unsignedShiftRight(UnknownIntegerValue other) in unsignedShiftRight() method in IntegerValue351 return unsignedShiftRight((IntegerValue)other); in unsignedShiftRight()593 public IntegerValue unsignedShiftRight(SpecificIntegerValue other) in unsignedShiftRight() method in IntegerValue595 return unsignedShiftRight((IntegerValue)other); in unsignedShiftRight()837 public IntegerValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in IntegerValue839 return unsignedShiftRight((SpecificIntegerValue)other); in unsignedShiftRight()
167 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in LongValue321 public LongValue unsignedShiftRight(SpecificLongValue other) in unsignedShiftRight() method in LongValue477 public LongValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in LongValue479 return unsignedShiftRight((SpecificIntegerValue)other); in unsignedShiftRight()
139 public IntegerValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in SpecificIntegerValue146 return other.unsignedShiftRight(this); in unsignedShiftRightOf()161 return other.unsignedShiftRight(this); in unsignedShiftRightOf()261 public IntegerValue unsignedShiftRight(SpecificIntegerValue other) in unsignedShiftRight() method in SpecificIntegerValue
171 public IntegerValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in ParticularIntegerValue178 return other.unsignedShiftRight(this); in unsignedShiftRightOf()193 return other.unsignedShiftRight(this); in unsignedShiftRightOf()289 public IntegerValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in ParticularIntegerValue
114 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in SpecificLongValue206 public LongValue unsignedShiftRight(SpecificLongValue other) in unsignedShiftRight() method in SpecificLongValue
134 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in ParticularLongValue222 public LongValue unsignedShiftRight(ParticularIntegerValue other) in unsignedShiftRight() method in ParticularLongValue
115 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in UnknownLongValue
141 public IntegerValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight() method in UnknownIntegerValue
589 static Const.Value unsignedShiftRight(Const.Value a, Const.Value b) { in unsignedShiftRight() method in ConstEvaluator810 return unsignedShiftRight(lhs, rhs); in evalBinary()
894 Method unsignedShiftRight = binaryOpMethod(int.class, in testIntBinaryOps() local896 assertEquals(0x00abcd12, unsignedShiftRight.invoke(null, 0xabcd1234, 8)); in testIntBinaryOps()946 Method unsignedShiftRight = binaryOpMethod( in testLongBinaryOps() local948 assertEquals(0x00abcdef01234567L, unsignedShiftRight.invoke(null, 0xabcdef0123456789L, 8)); in testLongBinaryOps()