Searched refs:divide (Results 101 - 125 of 258) sorted by relevance

1234567891011

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java207 BigInteger e = p.subtract(ONE).divide(q);
358 BigInteger e = p.subtract(ONE).divide(q);
/external/icu/icu4c/source/test/perf/perldriver/
H A DOutput.pm367 $ratio = $ratio->divide($perOperation);
384 $ratio = $ratio->divide($perOperation);
/external/icu/icu4j/perf-tests/perldriver/
H A DOutput.pm365 $ratio = $ratio->divide($perOperation);
382 $ratio = $ratio->divide($perOperation);
/external/llvm/include/llvm/ADT/
H A DAPFloat.h57 /// multiply, divide, fused-multiply-add, conversion-to-float,
300 opStatus divide(const APFloat &, roundingMode);
338 Result.divide(RHS, rmNearestTiesToEven);
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dqr_op_test.py91 sum_of_ratios = np.sum(np.divide(y, x), -2, keepdims=True)
92 phases = np.divide(sum_of_ratios, np.abs(sum_of_ratios))
H A Dsvd_op_test.py100 sum_of_ratios = np.sum(np.divide(y, x), -2, keepdims=True)
101 phases = np.divide(sum_of_ratios, np.abs(sum_of_ratios))
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java702 ECFieldElement gamma = dy.divide(dx);
906 ECFieldElement gamma = three(X1Squared).add(this.getCurve().getA()).divide(two(Y1));
1443 ECFieldElement L2 = L.add(X).divide(scale).add(X2);
1662 Y = Y.divide(Z);
1694 return Y.divide(X).testBitZero();
1734 ECFieldElement L = dy.divide(dx);
1831 ECFieldElement L = Y1.add(Y2).divide(X1);
1840 L3 = Y3.divide(X3).add(X3);
1904 ECFieldElement L1 = Y1.divide(X1).add(X1);
/external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
H A DDecimalQuantity_SimpleStorage.java362 d = d.divide(roundingInterval, 0, mathContext.getRoundingMode()).multiply(roundingInterval);
439 * @param divisor The number to be passed to {@link BigDecimal#divide}.
447 fallback = fallback.divide(divisor, -scale, mathContext.getRoundingMode());
742 BigDecimal temp = fallback.divide(BigDecimal.TEN).setScale(0, RoundingMode.FLOOR);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
H A DDecimalQuantity_SimpleStorage.java359 d = d.divide(roundingInterval, 0, mathContext.getRoundingMode()).multiply(roundingInterval);
436 * @param divisor The number to be passed to {@link BigDecimal#divide}.
444 fallback = fallback.divide(divisor, -scale, mathContext.getRoundingMode());
739 BigDecimal temp = fallback.divide(BigDecimal.TEN).setScale(0, RoundingMode.FLOOR);
/external/autotest/client/deps/webgl_mpd/src/resources/
H A DJ3DIMath.js69 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)
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
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/
H A DPrimes.java528 BigInteger tx2 = x.subtract(ONE).divide(c0x2).add(ONE).shiftLeft(1);
541 tx2 = ONE.shiftLeft(length - 1).subtract(ONE).divide(c0x2).add(ONE).shiftLeft(1);
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
H A DComposableFunction.java412 public ComposableFunction divide(final UnivariateRealFunction f) { method in class:ComposableFunction
/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 DSecP224K1FieldElement.java98 public ECFieldElement divide(ECFieldElement b) method in class:SecP224K1FieldElement
H A DSecP224R1FieldElement.java95 public ECFieldElement divide(ECFieldElement b) method in class:SecP224R1FieldElement
H A DSecP256K1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP256K1FieldElement
H A DSecP384R1FieldElement.java94 public ECFieldElement divide(ECFieldElement b) method in class:SecP384R1FieldElement
/external/e2fsprogs/intl/
H A Dplural.y328 lval->op = divide;
/external/guava/guava/src/com/google/common/hash/
H A DBloomFilterStrategies.java145 this(new long[Ints.checkedCast(LongMath.divide(bits, 64, RoundingMode.CEILING))]);
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
H A DIntMath.java157 public static int divide(int p, int q, RoundingMode mode) { method in class:IntMath
263 a >>= aTwos; // divide out all 2s
265 b >>= bTwos; // divide out all 2s
269 // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
283 a >>= Integer.numberOfTrailingZeros(a); // divide out all 2s, since 2 doesn't divide b
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
H A DUnsignedIntsTest.java120 assertEquals((int) (a / b), UnsignedInts.divide((int) a, (int) b));
H A DUnsignedLongTest.java186 .divide(bUnsigned.bigIntegerValue())
/external/icu/icu4j/perf-tests/
H A Dconverterperf.pl142 my $r = $t->divide($b);
H A Ddateformatperf.pl129 my $r = $t->divide($b);
H A Ddecimalformatperf.pl124 my $r = $t->divide($b);

Completed in 992 milliseconds

1234567891011