Searched defs:subtract (Results 1 - 25 of 102) sorted by relevance

12345

/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DFieldElement.java36 * @param a element to subtract
39 T subtract(T a); method in interface:FieldElement
/external/icu/icu4c/source/test/perf/perldriver/
H A DDataset.pm89 sub subtract { subroutine
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DLookaheadSet.java68 public LookaheadSet subtract(LookaheadSet other) { method in class:LookaheadSet
69 return new LookaheadSet(this.tokenTypeSet.subtract(other.tokenTypeSet));
87 tokenTypeSet = (IntervalSet)tokenTypeSet.subtract(IntervalSet.of(a));
/external/jetty/src/java/org/eclipse/jetty/util/statistic/
H A DCounterStatistic.java68 * @param delta the amount to subtract the count by.
70 public void subtract(final long delta) method in class:CounterStatistic
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java61 IntSet subtract(IntSet a); method in interface:IntSet
H A DIntervalSet.java260 public IntSet subtract(IntSet other) { method in class:IntervalSet
276 * subtract and so then subtract can simply be a&~b
278 public IntSet subtract(IntSet other) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
H A DPolynomialFunction.java164 * @param p polynomial to subtract
167 public PolynomialFunction subtract(final PolynomialFunction p) { method in class:PolynomialFunction
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1FieldElement.java80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP192K1FieldElement
83 SecP192K1Field.subtract(x, ((SecP192K1FieldElement)b).x, z);
H A DSecP192R1FieldElement.java80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP192R1FieldElement
83 SecP192R1Field.subtract(x, ((SecP192R1FieldElement)b).x, z);
H A DSecP256K1FieldElement.java80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP256K1FieldElement
83 SecP256K1Field.subtract(x, ((SecP256K1FieldElement)b).x, z);
H A DSecP256R1FieldElement.java80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP256R1FieldElement
83 SecP256R1Field.subtract(x, ((SecP256R1FieldElement)b).x, z);
H A DSecP384R1FieldElement.java80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP384R1FieldElement
83 SecP384R1Field.subtract(x, ((SecP384R1FieldElement)b).x, z);
H A DSecP521R1FieldElement.java80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP521R1FieldElement
83 SecP521R1Field.subtract(x, ((SecP521R1FieldElement)b).x, z);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
H A DMod.java125 public static void subtract(int[] p, int[] x, int[] y, int[] z) method in class:Mod
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java81 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);
H A DFloatValue.java81 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);
H A DParticularDoubleValue.java87 public DoubleValue subtract(DoubleValue other) method in class:ParticularDoubleValue
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
148 public DoubleValue subtract(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java87 public FloatValue subtract(FloatValue other) method in class:ParticularFloatValue
97 //return value == 0.0 ? other : other.subtract(this);
98 return other.subtract(this);
148 public FloatValue subtract(ParticularFloatValue other) method in class:ParticularFloatValue
H A DSpecificDoubleValue.java65 public DoubleValue subtract(DoubleValue other) method in class:SpecificDoubleValue
72 return other.subtract(this);
119 public DoubleValue subtract(SpecificDoubleValue other) method in class:SpecificDoubleValue
H A DSpecificFloatValue.java65 public FloatValue subtract(FloatValue other) method in class:SpecificFloatValue
72 return other.subtract(this);
119 public FloatValue subtract(SpecificFloatValue other) method in class:SpecificFloatValue
H A DUnknownDoubleValue.java65 public DoubleValue subtract(DoubleValue other) method in class:UnknownDoubleValue
H A DUnknownFloatValue.java65 public FloatValue subtract(FloatValue other) method in class:UnknownFloatValue
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java50 public final void subtract(Vector2 other) { method in class:Vector2
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldVector.java84 FieldVector<T> subtract(FieldVector<T> v) method in interface:FieldVector
93 FieldVector<T> subtract(T[] v) method in interface:FieldVector
H A DOpenMapRealMatrix.java122 public OpenMapRealMatrix subtract(final RealMatrix m) method in class:OpenMapRealMatrix
125 return subtract((OpenMapRealMatrix) m);
127 return (OpenMapRealMatrix) super.subtract(m);
138 public OpenMapRealMatrix subtract(OpenMapRealMatrix m) throws IllegalArgumentException { method in class:OpenMapRealMatrix

Completed in 841 milliseconds

12345