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

1 2 3 4 5 6 7

  /external/apache-commons-bcel/src/test/java/org/apache/bcel/
NanoTimer.java 34 public void subtract(final NanoTimer o) { method in class:NanoTimer
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FieldElement.java 36 * @param a element to subtract
39 T subtract(T a); method in interface:FieldElement
  /external/icu/icu4c/source/test/perf/perldriver/
Dataset.pm 93 sub subtract { subroutine
  /external/icu/icu4j/perf-tests/perldriver/
Dataset.pm 91 sub subtract { subroutine
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
ParameterizedRobolectricTestRunnerNormalTest.java 48 public void subtract() { method in class:ParameterizedRobolectricTestRunnerNormalTest
  /external/antlr/tool/src/main/java/org/antlr/analysis/
LookaheadSet.java 68 public LookaheadSet subtract(LookaheadSet other) { method in class:LookaheadSet
69 return new LookaheadSet(this.tokenTypeSet.subtract(other.tokenTypeSet));
87 tokenTypeSet = tokenTypeSet.subtract(IntervalSet.of(a));
  /external/antlr/tool/src/main/java/org/antlr/misc/
IntSet.java 61 IntSet subtract(IntSet a); method in interface:IntSet
  /build/make/tools/releasetools/
rangelib.py 192 def subtract(self, other): member in class:RangeSet
196 >>> RangeSet("10-19 30-34").subtract(RangeSet("18-32"))
198 >>> RangeSet("10-19 30-34").subtract(RangeSet("22-28"))
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
BigReal.java 235 public BigReal subtract(BigReal a) { method in class:BigReal
236 return new BigReal(d.subtract(a.d));
  /external/pdfium/third_party/bigint/
BigInteger.cc 193 // Otherwise, take the sign of the greater, and subtract
197 mag.subtract(a.mag, b.mag);
201 mag.subtract(b.mag, a.mag);
207 void BigInteger::subtract(const BigInteger &a, const BigInteger &b) { function in class:BigInteger
210 DTRT_ALIASED(this == &a || this == &b, subtract(a, b));
232 // subtract a from b.
235 mag.subtract(a.mag, b.mag);
238 // of b.sign and subtract b from a.
241 mag.subtract(b.mag, a.mag);
349 mag.subtract(b.mag, mag)
    [all...]
  /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 87 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
ParticularFloatValue.java 87 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
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
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 50 public final void subtract(Vector2 other) { method in class:Vector2
  /external/tensorflow/tensorflow/python/keras/layers/
merge.py 253 @keras_export('keras.layers.Subtract')
254 class Subtract(_Merge):
270 # Equivalent to subtracted = keras.layers.subtract([x1, x2])
271 subtracted = keras.layers.Subtract()([x1, x2])
280 super(Subtract, self).build(input_shape)
282 raise ValueError('A `Subtract` layer should be called '
287 raise ValueError('A `Subtract` layer should be called '
591 @keras_export('keras.layers.subtract')
592 def subtract(inputs, **kwargs): function
593 """Functional interface to the `Subtract` layer
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1FieldElement.java 80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP192K1FieldElement
83 SecP192K1Field.subtract(x, ((SecP192K1FieldElement)b).x, z);
SecP192R1FieldElement.java 80 public ECFieldElement subtract(ECFieldElement b) method in class:SecP192R1FieldElement
83 SecP192R1Field.subtract(x, ((SecP192R1FieldElement)b).x, z);
SecP224K1FieldElement.java 84 public ECFieldElement subtract(ECFieldElement b) method in class:SecP224K1FieldElement
87 SecP224K1Field.subtract(x, ((SecP224K1FieldElement)b).x, z);

Completed in 1718 milliseconds

1 2 3 4 5 6 7