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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ppc/
vle-simple-4.s 3 subtract: label
  /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
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
UtilsTest.java 39 public void subtract() { method in class:UtilsTest
43 assertEquals(set("Foo"), Utils.subtract(a, b));
44 assertEquals(set("Baz"), Utils.subtract(b, a));
45 assertEquals(a, Utils.subtract(a, empty));
46 assertEquals(empty, Utils.subtract(empty, a));
  /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/antlr-3.4/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 = (IntervalSet)tokenTypeSet.subtract(IntervalSet.of(a));
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.java 61 IntSet subtract(IntSet a); method in interface:IntSet
  /packages/apps/TV/common/src/com/android/tv/common/util/
CollectionUtils.java 70 public static <T> List<T> subtract( method in class:CollectionUtils
  /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/_impl/keras/layers/
merge.py 246 class Subtract(_Merge):
262 # Equivalent to subtracted = keras.layers.subtract([x1, x2])
263 subtracted = keras.layers.Subtract()([x1, x2])
272 super(Subtract, self).build(input_shape)
274 raise ValueError('A `Subtract` layer should be called '
279 raise ValueError('A `Subtract` layer should be called '
582 def subtract(inputs, **kwargs): function
583 """Functional interface to the `Subtract` layer.
601 subtracted = keras.layers.subtract([x1, x2])
607 return Subtract(**kwargs)(inputs
    [all...]
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
Utils.java 84 static <X> Set<X> subtract(Set<X> a, Set<X> b) { method in class:Utils

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>