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

1 2 3 4 5 6 7 8 910

  /external/icu/icu4j/perf-tests/
Dataset.pm 68 # Divide two Datasets and return a new one, maintaining the
70 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/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/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 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /external/icu/icu4j/perf-tests/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /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/chromium-trace/catapult/third_party/WebOb/docs/jsonrpc-example-code/
jsonrpc.py 160 def divide(self, a, b): member in class:DemoObject
  /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/opencv3/modules/cudaarithm/src/
element_operations.cpp 53 void cv::cuda::divide(InputArray, InputArray, OutputArray, double, int, Stream&) { throw_no_cuda(); } function in class:cv::cuda
231 // divide
239 void cv::cuda::divide(InputArray _src1, InputArray _src2, OutputArray _dst, double scale, int dtype, Stream& stream)
  /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/skia/experimental/
SkSetPoly3To3_A.cpp 18 static SkScalar divide(SkDScalar numer, SkDScalar denom) { function
75 matrix->setScaleX(divide(M[0], det));
76 matrix->setSkewX( divide(M[1], det));
77 matrix->setSkewY (divide(M[2], det));
78 matrix->setScaleY(divide(M[3], det));

Completed in 1615 milliseconds

1 2 3 4 5 6 7 8 910