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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/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
  /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/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/
CollectionUtils.java 74 public static <T> List<T> subtract(Collection<T> originals, T[] toSubtracts, method in class:CollectionUtils
  /build/make/tools/releasetools/
rangelib.py 178 def subtract(self, other): member in class:RangeSet
182 >>> RangeSet("10-19 30-34").subtract(RangeSet("18-32"))
184 >>> 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
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
KernelUidCpuFreqTimeReaderTest.java 97 verify(mCallback).onUidCpuFreqTime(uids[i], subtract(newTimes1[i], times[i]));
128 verify(mCallback).onUidCpuFreqTime(uids[i], subtract(newTimes3[i], newTimes2[i]));
133 private long[] subtract(long[] a1, long[] a2) { method in class:KernelUidCpuFreqTimeReaderTest
  /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 293 milliseconds

1 2 3 4 5 6 7 8 91011>>