HomeSort by relevance Sort by last modified time
    Searched defs:subtract (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/icu4c/test/perf/perldriver/
Dataset.pm 89 sub subtract { subroutine
  /external/webkit/Source/WebKit2/Platform/
Region.h 48 void subtract(const Region&);
126 static inline Region subtract(const Region& a, const Region& b) function in namespace:WebKit
129 result.subtract(b);
Region.cpp 440 void Region::subtract(const Region& region) function in class:WebKit::Region
  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 81 public abstract DoubleValue subtract(DoubleValue other); method in class:DoubleValue
155 public DoubleValue subtract(SpecificDoubleValue other) method in class:DoubleValue
157 return subtract((DoubleValue)other);
258 public DoubleValue subtract(ParticularDoubleValue other) method in class:DoubleValue
260 return subtract((SpecificDoubleValue)other);
FloatValue.java 81 public abstract FloatValue subtract(FloatValue other); method in class:FloatValue
155 public FloatValue subtract(SpecificFloatValue other) method in class:FloatValue
157 return subtract((FloatValue)other);
258 public FloatValue subtract(ParticularFloatValue other) method in class:FloatValue
260 return subtract((SpecificFloatValue)other);
ParticularDoubleValue.java 85 public DoubleValue subtract(DoubleValue other) method in class:ParticularDoubleValue
92 return value == 0.0 ? other : other.subtract(this);
139 public DoubleValue subtract(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 85 public FloatValue subtract(FloatValue other) method in class:ParticularFloatValue
92 return value == 0.0 ? other : other.subtract(this);
139 public FloatValue subtract(ParticularFloatValue other) method in class:ParticularFloatValue
SpecificDoubleValue.java 65 public DoubleValue subtract(DoubleValue other) method in class:SpecificDoubleValue
72 return other.subtract(this);
119 public DoubleValue subtract(SpecificDoubleValue other) method in class:SpecificDoubleValue
121 return new CompositeDoubleValue(this, CompositeDoubleValue.SUBTRACT, other);
126 return new CompositeDoubleValue(other, CompositeDoubleValue.SUBTRACT, this);
SpecificFloatValue.java 65 public FloatValue subtract(FloatValue other) method in class:SpecificFloatValue
72 return other.subtract(this);
119 public FloatValue subtract(SpecificFloatValue other) method in class:SpecificFloatValue
121 return new CompositeFloatValue(this, CompositeFloatValue.SUBTRACT, other);
126 return new CompositeFloatValue(other, CompositeFloatValue.SUBTRACT, this);
SpecificLongValue.java 65 public LongValue subtract(LongValue other) method in class:SpecificLongValue
72 return other.subtract(this);
153 public LongValue subtract(SpecificLongValue other) method in class:SpecificLongValue
157 new CompositeLongValue(this, CompositeLongValue.SUBTRACT, other);
164 new CompositeLongValue(other, CompositeLongValue.SUBTRACT, this);
UnknownDoubleValue.java 65 public DoubleValue subtract(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 65 public FloatValue subtract(FloatValue other) method in class:UnknownFloatValue
UnknownLongValue.java 65 public LongValue subtract(LongValue other) method in class:UnknownLongValue
IntegerValue.java 95 public abstract IntegerValue subtract(IntegerValue other); method in class:IntegerValue
272 public IntegerValue subtract(UnknownIntegerValue other) method in class:IntegerValue
274 return subtract((IntegerValue)other);
516 public IntegerValue subtract(SpecificIntegerValue other) method in class:IntegerValue
518 return subtract((IntegerValue)other);
760 public IntegerValue subtract(ParticularIntegerValue other) method in class:IntegerValue
762 return subtract((SpecificIntegerValue)other);
LongValue.java 87 public LongValue subtract(LongValue other) method in class:LongValue
97 return other.subtract(this);
244 public LongValue subtract(SpecificLongValue other) method in class:LongValue
400 public LongValue subtract(ParticularLongValue other) method in class:LongValue
402 return subtract((SpecificLongValue)other);
ParticularIntegerValue.java 112 public IntegerValue subtract(IntegerValue other) method in class:ParticularIntegerValue
119 return other.subtract(this);
240 public IntegerValue subtract(ParticularIntegerValue other) method in class:ParticularIntegerValue
ParticularLongValue.java 85 public LongValue subtract(LongValue other) method in class:ParticularLongValue
92 return other.subtract(this);
173 public LongValue subtract(ParticularLongValue other) method in class:ParticularLongValue
SpecificIntegerValue.java 80 public IntegerValue subtract(IntegerValue other) method in class:SpecificIntegerValue
87 return other.subtract(this);
208 public IntegerValue subtract(SpecificIntegerValue other) method in class:SpecificIntegerValue
212 new CompositeIntegerValue(this, CompositeIntegerValue.SUBTRACT, other);
219 new CompositeIntegerValue(other, CompositeIntegerValue.SUBTRACT, this);
UnknownIntegerValue.java 81 public IntegerValue subtract(IntegerValue other) method in class:UnknownIntegerValue
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 50 public final void subtract(Vector2 other) { method in class:Vector2
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 104 public SimpleBigDecimal subtract(SimpleBigDecimal b) method in class:SimpleBigDecimal
109 public SimpleBigDecimal subtract(BigInteger b) method in class:SimpleBigDecimal
111 return new SimpleBigDecimal(bigInt.subtract(b.shiftLeft(scale)),
199 BigInteger fract = bigInt.subtract(floorBigInt.shiftLeft(scale));
202 fract = ECConstants.ONE.shiftLeft(scale).subtract(fract);
ECPoint.java 114 public abstract ECPoint subtract(ECPoint b); method in class:ECPoint
266 ECFieldElement gamma = b.y.subtract(this.y).divide(b.x.subtract(this.x));
268 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x);
269 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y);
294 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
295 ECFieldElement y3 = gamma.multiply(this.x.subtract(x3)).subtract(this.y)
301 public ECPoint subtract(ECPoint b) method in class:ECPoint.Fp
506 public ECPoint subtract(ECPoint b) method in class:ECPoint.F2m
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 154 // Simply subtract the bounds...
252 /// subtract - Subtract the specified constant from the endpoints of this
254 ConstantRange ConstantRange::subtract(const APInt &Val) const { function in class:ConstantRange
  /frameworks/base/tools/preload/
MemoryUsage.java 107 MemoryUsage subtract(MemoryUsage baseline) { method in class:MemoryUsage
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 68 * subtract 15 days from 1 month. See the javadoc of those methods
449 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
485 * @see #subtract(Duration)
580 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
603 * @param rhs <code>Duration</code> to subtract from this <code>Duration</code>.
617 public Duration subtract(final Duration rhs) { method in class:Duration
    [all...]

Completed in 1107 milliseconds

1 2 3