Home
last modified time | relevance | path

Searched refs:remainderOf (Results 1 – 17 of 17) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DDoubleValue.java111 public abstract DoubleValue remainderOf(DoubleValue other); in remainderOf() method in DoubleValue
206 public DoubleValue remainderOf(SpecificDoubleValue other) in remainderOf() method in DoubleValue
208 return remainderOf((DoubleValue)other); in remainderOf()
309 public DoubleValue remainderOf(ParticularDoubleValue other) in remainderOf() method in DoubleValue
311 return remainderOf((SpecificDoubleValue)other); in remainderOf()
DFloatValue.java111 public abstract FloatValue remainderOf(FloatValue other); in remainderOf() method in FloatValue
206 public FloatValue remainderOf(SpecificFloatValue other) in remainderOf() method in FloatValue
208 return remainderOf((FloatValue)other); in remainderOf()
309 public FloatValue remainderOf(ParticularFloatValue other) in remainderOf() method in FloatValue
311 return remainderOf((SpecificFloatValue)other); in remainderOf()
DLongValue.java134 return other.remainderOf(this); in remainder()
141 public LongValue remainderOf(LongValue other) in remainderOf() method in LongValue
296 public LongValue remainderOf(SpecificLongValue other) in remainderOf() method in LongValue
452 public LongValue remainderOf(ParticularLongValue other) in remainderOf() method in LongValue
454 return remainderOf((SpecificLongValue)other); in remainderOf()
DIntegerValue.java131 public abstract IntegerValue remainderOf(IntegerValue other) in remainderOf() method in IntegerValue
324 public IntegerValue remainderOf(UnknownIntegerValue other) in remainderOf() method in IntegerValue
326 return remainderOf((IntegerValue)other); in remainderOf()
568 public IntegerValue remainderOf(SpecificIntegerValue other) in remainderOf() method in IntegerValue
570 return remainderOf((IntegerValue)other); in remainderOf()
812 public IntegerValue remainderOf(ParticularIntegerValue other) in remainderOf() method in IntegerValue
814 return remainderOf((SpecificIntegerValue)other); in remainderOf()
DSpecificDoubleValue.java92 return other.remainderOf(this); in remainder()
95 public DoubleValue remainderOf(DoubleValue other) in remainderOf() method in SpecificDoubleValue
149 public DoubleValue remainderOf(SpecificDoubleValue other) in remainderOf() method in SpecificDoubleValue
DSpecificFloatValue.java92 return other.remainderOf(this); in remainder()
95 public FloatValue remainderOf(FloatValue other) in remainderOf() method in SpecificFloatValue
149 public FloatValue remainderOf(SpecificFloatValue other) in remainderOf() method in SpecificFloatValue
DParticularFloatValue.java118 return other.remainderOf(this); in remainder()
121 public FloatValue remainderOf(FloatValue other) in remainderOf() method in ParticularFloatValue
178 public FloatValue remainderOf(ParticularFloatValue other) in remainderOf() method in ParticularFloatValue
DParticularDoubleValue.java118 return other.remainderOf(this); in remainder()
121 public DoubleValue remainderOf(DoubleValue other) in remainderOf() method in ParticularDoubleValue
178 public DoubleValue remainderOf(ParticularDoubleValue other) in remainderOf() method in ParticularDoubleValue
DParticularLongValue.java115 return other.remainderOf(this); in remainder()
118 public LongValue remainderOf(LongValue other) in remainderOf() method in ParticularLongValue
206 public LongValue remainderOf(ParticularLongValue other) in remainderOf() method in ParticularLongValue
DSpecificLongValue.java95 return other.remainderOf(this); in remainder()
98 public LongValue remainderOf(LongValue other) in remainderOf() method in SpecificLongValue
190 public LongValue remainderOf(SpecificLongValue other) in remainderOf() method in SpecificLongValue
DSpecificIntegerValue.java110 return other.remainderOf(this); in remainder()
113 public IntegerValue remainderOf(IntegerValue other) in remainderOf() method in SpecificIntegerValue
245 public IntegerValue remainderOf(SpecificIntegerValue other) in remainderOf() method in SpecificIntegerValue
DParticularIntegerValue.java142 return other.remainderOf(this); in remainder()
145 public IntegerValue remainderOf(IntegerValue other) in remainderOf() method in ParticularIntegerValue
273 public IntegerValue remainderOf(ParticularIntegerValue other) in remainderOf() method in ParticularIntegerValue
DUnknownFloatValue.java95 public FloatValue remainderOf(FloatValue other) in remainderOf() method in UnknownFloatValue
DUnknownDoubleValue.java95 public DoubleValue remainderOf(DoubleValue other) in remainderOf() method in UnknownDoubleValue
DUnknownLongValue.java99 public LongValue remainderOf(LongValue other) in remainderOf() method in UnknownLongValue
DUnknownIntegerValue.java115 public IntegerValue remainderOf(IntegerValue other) in remainderOf() method in UnknownIntegerValue
/external/proguard/src/proguard/evaluation/
DProcessor.java324 stack.push(stack.ipop().remainderOf(stack.ipop())); in visitSimpleInstruction()
339 stack.push(stack.lpop().remainderOf(stack.lpop())); in visitSimpleInstruction()
352 stack.push(stack.fpop().remainderOf(stack.fpop())); in visitSimpleInstruction()
356 stack.push(stack.dpop().remainderOf(stack.dpop())); in visitSimpleInstruction()