Home
last modified time | relevance | path

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

/external/proguard/src/proguard/evaluation/value/
DIntegerValue.java164 public abstract IntegerValue unsignedShiftRightOf(IntegerValue other); in unsignedShiftRightOf() method in IntegerValue
179 public abstract LongValue unsignedShiftRightOf(LongValue other); in unsignedShiftRightOf() method in IntegerValue
374 public IntegerValue unsignedShiftRightOf(UnknownIntegerValue other) in unsignedShiftRightOf() method in IntegerValue
376 return unsignedShiftRightOf((IntegerValue)other); in unsignedShiftRightOf()
399 public LongValue unsignedShiftRightOf(UnknownLongValue other) in unsignedShiftRightOf() method in IntegerValue
401 return unsignedShiftRightOf((LongValue)other); in unsignedShiftRightOf()
618 public IntegerValue unsignedShiftRightOf(SpecificIntegerValue other) in unsignedShiftRightOf() method in IntegerValue
620 return unsignedShiftRightOf((IntegerValue)other); in unsignedShiftRightOf()
643 public LongValue unsignedShiftRightOf(SpecificLongValue other) in unsignedShiftRightOf() method in IntegerValue
645 return unsignedShiftRightOf((LongValue)other); in unsignedShiftRightOf()
[all …]
DSpecificIntegerValue.java141 return other.unsignedShiftRightOf(this); in unsignedShiftRight()
144 public IntegerValue unsignedShiftRightOf(IntegerValue other) in unsignedShiftRightOf() method in SpecificIntegerValue
159 public LongValue unsignedShiftRightOf(LongValue other) in unsignedShiftRightOf() method in SpecificIntegerValue
276 public IntegerValue unsignedShiftRightOf(SpecificIntegerValue other) in unsignedShiftRightOf() method in SpecificIntegerValue
291 public LongValue unsignedShiftRightOf(SpecificLongValue other) in unsignedShiftRightOf() method in SpecificIntegerValue
DParticularIntegerValue.java173 return other.unsignedShiftRightOf(this); in unsignedShiftRight()
176 public IntegerValue unsignedShiftRightOf(IntegerValue other) in unsignedShiftRightOf() method in ParticularIntegerValue
191 public LongValue unsignedShiftRightOf(LongValue other) in unsignedShiftRightOf() method in ParticularIntegerValue
304 public IntegerValue unsignedShiftRightOf(ParticularIntegerValue other) in unsignedShiftRightOf() method in ParticularIntegerValue
319 public LongValue unsignedShiftRightOf(ParticularLongValue other) in unsignedShiftRightOf() method in ParticularIntegerValue
DUnknownIntegerValue.java146 public IntegerValue unsignedShiftRightOf(IntegerValue other) in unsignedShiftRightOf() method in UnknownIntegerValue
161 public LongValue unsignedShiftRightOf(LongValue other) in unsignedShiftRightOf() method in UnknownIntegerValue
DSpecificLongValue.java116 return other.unsignedShiftRightOf(this); in unsignedShiftRight()
DParticularLongValue.java136 return other.unsignedShiftRightOf(this); in unsignedShiftRight()
DLongValue.java169 return other.unsignedShiftRightOf(this); in unsignedShiftRight()
/external/proguard/src/proguard/evaluation/
DProcessor.java392 stack.push(stack.ipop().unsignedShiftRightOf(stack.ipop())); in visitSimpleInstruction()
396 stack.push(stack.ipop().unsignedShiftRightOf(stack.lpop())); in visitSimpleInstruction()