Home
last modified time | relevance | path

Searched refs:shiftRightOf (Results 1 – 8 of 8) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DIntegerValue.java158 public abstract IntegerValue shiftRightOf(IntegerValue other); in shiftRightOf() method in IntegerValue
174 public abstract LongValue shiftRightOf(LongValue other); in shiftRightOf() method in IntegerValue
365 public IntegerValue shiftRightOf(UnknownIntegerValue other) in shiftRightOf() method in IntegerValue
367 return shiftRightOf((IntegerValue)other); in shiftRightOf()
390 public LongValue shiftRightOf(UnknownLongValue other) in shiftRightOf() method in IntegerValue
392 return shiftRightOf((LongValue)other); in shiftRightOf()
609 public IntegerValue shiftRightOf(SpecificIntegerValue other) in shiftRightOf() method in IntegerValue
611 return shiftRightOf((IntegerValue)other); in shiftRightOf()
634 public LongValue shiftRightOf(SpecificLongValue other) in shiftRightOf() method in IntegerValue
636 return shiftRightOf((LongValue)other); in shiftRightOf()
[all …]
DSpecificIntegerValue.java131 return other.shiftRightOf(this); in shiftRight()
134 public IntegerValue shiftRightOf(IntegerValue other) in shiftRightOf() method in SpecificIntegerValue
154 public LongValue shiftRightOf(LongValue other) in shiftRightOf() method in SpecificIntegerValue
271 public IntegerValue shiftRightOf(SpecificIntegerValue other) in shiftRightOf() method in SpecificIntegerValue
286 public LongValue shiftRightOf(SpecificLongValue other) in shiftRightOf() method in SpecificIntegerValue
DParticularIntegerValue.java163 return other.shiftRightOf(this); in shiftRight()
166 public IntegerValue shiftRightOf(IntegerValue other) in shiftRightOf() method in ParticularIntegerValue
186 public LongValue shiftRightOf(LongValue other) in shiftRightOf() method in ParticularIntegerValue
299 public IntegerValue shiftRightOf(ParticularIntegerValue other) in shiftRightOf() method in ParticularIntegerValue
314 public LongValue shiftRightOf(ParticularLongValue other) in shiftRightOf() method in ParticularIntegerValue
DUnknownIntegerValue.java136 public IntegerValue shiftRightOf(IntegerValue other) in shiftRightOf() method in UnknownIntegerValue
156 public LongValue shiftRightOf(LongValue other) in shiftRightOf() method in UnknownIntegerValue
DParticularLongValue.java131 return other.shiftRightOf(this); in shiftRight()
DSpecificLongValue.java111 return other.shiftRightOf(this); in shiftRight()
DLongValue.java160 return other.shiftRightOf(this); in shiftRight()
/external/proguard/src/proguard/evaluation/
DProcessor.java384 stack.push(stack.ipop().shiftRightOf(stack.ipop())); in visitSimpleInstruction()
388 stack.push(stack.ipop().shiftRightOf(stack.lpop())); in visitSimpleInstruction()