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

1 23 4 5 6 7

  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionDataStore.java 65 * execution data to subtract
71 public void subtract(final ExecutionData data) throws IllegalStateException { method in class:ExecutionDataStore
83 * execution data store to subtract
84 * @see #subtract(ExecutionData)
86 public void subtract(final ExecutionDataStore store) { method in class:ExecutionDataStore
88 subtract(data);
  /external/proguard/src/proguard/evaluation/value/
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/tensorflow/tensorflow/core/kernels/
sparse_xent_op.h 117 T subtract = TF_PREDICT_FALSE(depth == label) ? T(1.0) : T(0.0); local
118 return exp_logits_(coords) / sum_exp_logits_(batch) - subtract;
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 41 DesktopVector subtract(const DesktopVector& other) const { function in class:webrtc::DesktopVector
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP224R1FieldElement.java 81 public ECFieldElement subtract(ECFieldElement b) method in class:SecP224R1FieldElement
84 SecP224R1Field.subtract(x, ((SecP224R1FieldElement)b).x, z);
SecP192K1Point.java 137 SecP192K1Field.subtract(U1, U2, H);
140 SecP192K1Field.subtract(S1, S2, R);
172 SecP192K1Field.subtract(X3.x, G, X3.x);
175 SecP192K1Field.subtract(V, X3.x, Y3.x);
236 SecP192K1Field.subtract(X3.x, S, X3.x);
237 SecP192K1Field.subtract(X3.x, S, X3.x);
240 SecP192K1Field.subtract(S, X3.x, Y3.x);
242 SecP192K1Field.subtract(Y3.x, t1, Y3.x);
SecP192R1Field.java 217 public static void subtract(int[] x, int[] y, int[] z) method in class:SecP192R1Field
SecP224K1Point.java 137 SecP224K1Field.subtract(U1, U2, H);
140 SecP224K1Field.subtract(S1, S2, R);
172 SecP224K1Field.subtract(X3.x, G, X3.x);
175 SecP224K1Field.subtract(V, X3.x, Y3.x);
236 SecP224K1Field.subtract(X3.x, S, X3.x);
237 SecP224K1Field.subtract(X3.x, S, X3.x);
240 SecP224K1Field.subtract(S, X3.x, Y3.x);
242 SecP224K1Field.subtract(Y3.x, t1, Y3.x);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/custom/sec/
SecP224R1FieldElement.java 85 public ECFieldElement subtract(ECFieldElement b) method in class:SecP224R1FieldElement
88 SecP224R1Field.subtract(x, ((SecP224R1FieldElement)b).x, z);
  /external/crcalc/tests/src/com/hp/creals/
SlowCRTest.java 43 BigInteger.ONE.shiftLeft(-TEST_PREC).subtract(BigInteger.ONE);
111 check(isApprInt(tmp.subtract(x).divide(CR.PI))
120 check(isApprInt(tmp.subtract(x).divide(CR.PI))
178 checkTrig(CR.PI.subtract(SMALL));
181 checkTrig(CR.PI.negate().subtract(SMALL));
209 checkExpLn(ONE.subtract(SMALL));
210 checkExpLn(ONE.negate().subtract(SMALL));
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
float16_gen.c 193 unsigned short subtract(unsigned short a, unsigned short b) { function
276 printReferenceOutput(OUTPUT_ARRAY_SUB, subtract, 1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
collections.py 559 def subtract(*args, **kwds): member in class:Counter
567 >>> c.subtract('witch') # subtract elements from another iterable
568 >>> c.subtract(Counter('watch')) # subtract elements from another counter
576 raise TypeError("descriptor 'subtract' of 'Counter' object "
592 self.subtract(kwds)
641 ''' Subtract count, but keep only results with positive counts.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
collections.py 504 def subtract(self, iterable=None, **kwds): member in class:Counter
512 >>> c.subtract('witch') # subtract elements from another iterable
513 >>> c.subtract(Counter('watch')) # subtract elements from another counter
529 self.subtract(kwds)
578 ''' Subtract count, but keep only results with positive counts.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
Vector3D.java 264 /** Subtract a vector from the instance.
265 * @param v vector to subtract
268 public Vector3D subtract(Vector3D v) { method in class:Vector3D
272 /** Subtract a scaled vector from the instance.
274 * @param v vector to subtract
277 public Vector3D subtract(double factor, Vector3D v) { method in class:Vector3D
468 * <code>v1.subtract(v2).getNorm1()</code> except that no intermediate
483 * <code>v1.subtract(v2).getNorm()</code> except that no intermediate
498 * <code>v1.subtract(v2).getNormInf()</code> except that no intermediate
513 * <code>v1.subtract(v2).getNormSq()</code> except that no intermediat
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealMatrix.java 97 public RealMatrix subtract(final RealMatrix m) throws IllegalArgumentException { method in class:AbstractRealMatrix
    [all...]
Array2DRowFieldMatrix.java 206 public FieldMatrix<T> subtract(final FieldMatrix<T> m) method in class:Array2DRowFieldMatrix
209 return subtract((Array2DRowFieldMatrix<T>) m);
211 return super.subtract(m);
222 public Array2DRowFieldMatrix<T> subtract(final Array2DRowFieldMatrix<T> m) method in class:Array2DRowFieldMatrix
236 outDataRow[col] = dataRow[col].subtract(mRow[col]);
ArrayFieldVector.java 345 public FieldVector<T> subtract(FieldVector<T> v) throws IllegalArgumentException { method in class:ArrayFieldVector
347 return subtract((ArrayFieldVector<T>) v);
352 out[i] = data[i].subtract(v.getEntry(i));
359 public FieldVector<T> subtract(T[] v) throws IllegalArgumentException { method in class:ArrayFieldVector
363 out[i] = data[i].subtract(v[i]);
374 public ArrayFieldVector<T> subtract(ArrayFieldVector<T> v) method in class:ArrayFieldVector
376 return (ArrayFieldVector<T>) subtract(v.data);
400 out[i] = data[i].subtract(d);
408 data[i] = data[i].subtract(d);
FieldMatrix.java 77 FieldMatrix<T> subtract(FieldMatrix<T> m) throws IllegalArgumentException; method in interface:FieldMatrix
    [all...]
OpenMapRealMatrix.java 122 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
RealMatrix.java 68 RealMatrix subtract(RealMatrix m) throws IllegalArgumentException; method in interface:RealMatrix
    [all...]

Completed in 812 milliseconds

1 23 4 5 6 7