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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/common_lib/perf_expectations/
expectation_checker.py 24 def divide(x, y): function
107 ratio = 1 - divide(trace_perf_value, improve)
110 ratio = divide(trace_perf_value, regress) - 1
115 ratio = divide(trace_perf_value, improve) - 1
118 ratio = 1 - divide(trace_perf_value, regress)
  /external/icu/icu4j/perf-tests/
Dataset.pm 70 # Divide two Datasets and return a new one, maintaining the
72 sub divide { subroutine
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FieldElement.java 47 /** Compute this ÷ a.
49 * @return a new element representing this ÷ a
53 T divide(T a) throws ArithmeticException; method in interface:FieldElement
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 81 @Benchmark int divide(int reps) { method in class:BigIntegerMathRoundingBenchmark
85 tmp += BigIntegerMath.divide(nonzero1[j], nonzero2[j], mode).intValue();
IntMathRoundingBenchmark.java 81 @Benchmark int divide(int reps) { method in class:IntMathRoundingBenchmark
85 tmp += IntMath.divide(ints[j], nonzero[j], mode);
LongMathRoundingBenchmark.java 81 @Benchmark int divide(int reps) { method in class:LongMathRoundingBenchmark
85 tmp += LongMath.divide(longs[j], nonzero[j], mode);
  /external/icu/icu4c/source/test/perf/perldriver/
Dataset.pm 73 # Divide two Datasets and return a new one, maintaining the
75 sub divide { subroutine
  /external/icu/icu4j/perf-tests/perldriver/
Dataset.pm 71 # Divide two Datasets and return a new one, maintaining the
73 sub divide { subroutine
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
ParameterizedRobolectricTestRunnerNormalTest.java 60 public void divide() { method in class:ParameterizedRobolectricTestRunnerNormalTest
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
BigReal.java 240 public BigReal divide(BigReal a) throws ArithmeticException { method in class:BigReal
241 return new BigReal(d.divide(a.d, scale, roundingMode));
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 180 public static int divide(int dividend, int divisor) { method in class:UnsignedInts
  /external/guava/guava-tests/benchmark/com/google/common/primitives/
UnsignedLongsBenchmark.java 52 @Benchmark long divide(int reps) { method in class:UnsignedLongsBenchmark
56 tmp += UnsignedLongs.divide(longs[j], divisors[j]);
  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 96 public abstract DoubleValue divide(DoubleValue other); method in class:DoubleValue
179 public DoubleValue divide(SpecificDoubleValue other) method in class:DoubleValue
181 return divide((DoubleValue)other);
282 public DoubleValue divide(ParticularDoubleValue other) method in class:DoubleValue
284 return divide((SpecificDoubleValue)other);
FloatValue.java 96 public abstract FloatValue divide(FloatValue other); method in class:FloatValue
179 public FloatValue divide(SpecificFloatValue other) method in class:FloatValue
181 return divide((FloatValue)other);
282 public FloatValue divide(ParticularFloatValue other) method in class:FloatValue
284 return divide((SpecificFloatValue)other);
ParticularDoubleValue.java 106 public DoubleValue divide(DoubleValue other) method in class:ParticularDoubleValue
113 return other.divide(this);
163 public DoubleValue divide(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 106 public FloatValue divide(FloatValue other) method in class:ParticularFloatValue
113 return other.divide(this);
163 public FloatValue divide(ParticularFloatValue other) method in class:ParticularFloatValue
SpecificDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:SpecificDoubleValue
87 return other.divide(this);
134 public DoubleValue divide(SpecificDoubleValue other) method in class:SpecificDoubleValue
136 return new CompositeDoubleValue(this, CompositeDoubleValue.DIVIDE, other);
141 return new CompositeDoubleValue(other, CompositeDoubleValue.DIVIDE, this);
SpecificFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:SpecificFloatValue
87 return other.divide(this);
134 public FloatValue divide(SpecificFloatValue other) method in class:SpecificFloatValue
136 return new CompositeFloatValue(this, CompositeFloatValue.DIVIDE, other);
141 return new CompositeFloatValue(other, CompositeFloatValue.DIVIDE, this);
SpecificLongValue.java 80 public LongValue divide(LongValue other) method in class:SpecificLongValue
89 return other.divide(this);
172 public LongValue divide(SpecificLongValue other) method in class:SpecificLongValue
175 return new CompositeLongValue(this, CompositeLongValue.DIVIDE, other);
181 return new CompositeLongValue(other, CompositeLongValue.DIVIDE, this);
UnknownDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:UnknownFloatValue
UnknownLongValue.java 81 public LongValue divide(LongValue other) method in class:UnknownLongValue
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 65 public final void divide(float magnitude) { method in class:Vector2
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DIMath.js 69 void divide(in float divisor); // divide the matrix by the passed divisor
103 void divide(in float divisor); // divide the vector by the passed divisor
587 J3DIMatrix4.prototype.divide = function(divisor) method in class:J3DIMatrix4
786 matrix.divide(matrix.$matrix.m44);
838 row0.divide(scale[0]);
846 row1.divide(scale[1]);
857 row2.divide(scale[2]);
1021 J3DIVector3.prototype.divide = function(divisor) method in class:J3DIVector3
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 120 public SimpleBigDecimal divide(SimpleBigDecimal b) method in class:SimpleBigDecimal
124 return new SimpleBigDecimal(dividend.divide(b.bigInt), scale);
127 public SimpleBigDecimal divide(BigInteger b) method in class:SimpleBigDecimal
129 return new SimpleBigDecimal(bigInt.divide(b), scale);

Completed in 687 milliseconds

1 2 3 4 5 6 7 8 91011>>