Searched defs:divide (Results 1 - 25 of 102) sorted by relevance

12345

/external/icu/icu4j/perf-tests/
H A DDataset.pm72 sub divide { subroutine
/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DFieldElement.java47 /** Compute this ÷ a.
49 * @return a new element representing this ÷ a
53 T divide(T a) throws ArithmeticException; method in interface:FieldElement
/external/autotest/client/common_lib/perf_expectations/
H A Dexpectation_checker.py24 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/guava/guava-tests/benchmark/com/google/common/math/
H A DBigIntegerMathRoundingBenchmark.java81 @Benchmark int divide(int reps) { method in class:BigIntegerMathRoundingBenchmark
85 tmp += BigIntegerMath.divide(nonzero1[j], nonzero2[j], mode).intValue();
H A DIntMathRoundingBenchmark.java81 @Benchmark int divide(int reps) { method in class:IntMathRoundingBenchmark
85 tmp += IntMath.divide(ints[j], nonzero[j], mode);
H A DLongMathRoundingBenchmark.java81 @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/
H A DDataset.pm75 sub divide { subroutine
/external/icu/icu4j/perf-tests/perldriver/
H A DDataset.pm73 sub divide { subroutine
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
H A DParameterizedRobolectricTestRunnerNormalTest.java60 public void divide() { method in class:ParameterizedRobolectricTestRunnerNormalTest
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP192K1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP192K1FieldElement
H A DSecP192R1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP192R1FieldElement
H A DSecP256K1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP256K1FieldElement
H A DSecP256R1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP256R1FieldElement
H A DSecP384R1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP384R1FieldElement
H A DSecP521R1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP521R1FieldElement
/external/guava/guava-tests/benchmark/com/google/common/primitives/
H A DUnsignedLongsBenchmark.java52 @Benchmark long divide(int reps) { method in class:UnsignedLongsBenchmark
56 tmp += UnsignedLongs.divide(longs[j], divisors[j]);
/external/proguard/src/proguard/evaluation/value/
H A DDoubleValue.java96 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);
H A DFloatValue.java96 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);
H A DParticularDoubleValue.java106 public DoubleValue divide(DoubleValue other) method in class:ParticularDoubleValue
113 return other.divide(this);
163 public DoubleValue divide(ParticularDoubleValue other) method in class:ParticularDoubleValue
H A DParticularFloatValue.java106 public FloatValue divide(FloatValue other) method in class:ParticularFloatValue
113 return other.divide(this);
163 public FloatValue divide(ParticularFloatValue other) method in class:ParticularFloatValue
H A DSpecificDoubleValue.java80 public DoubleValue divide(DoubleValue other) method in class:SpecificDoubleValue
87 return other.divide(this);
134 public DoubleValue divide(SpecificDoubleValue other) method in class:SpecificDoubleValue
H A DSpecificFloatValue.java80 public FloatValue divide(FloatValue other) method in class:SpecificFloatValue
87 return other.divide(this);
134 public FloatValue divide(SpecificFloatValue other) method in class:SpecificFloatValue
H A DUnknownDoubleValue.java80 public DoubleValue divide(DoubleValue other) method in class:UnknownDoubleValue
H A DUnknownFloatValue.java80 public FloatValue divide(FloatValue other) method in class:UnknownFloatValue
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java65 public final void divide(float magnitude) { method in class:Vector2

Completed in 555 milliseconds

12345