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

123

/external/chromium_org/third_party/sqlite/src/tool/
H A Dspaceanal.tcl194 proc divide {num denom} { procedure
255 set avg_payload [divide $payload $nleaf]
256 set avg_unused [divide $total_unused $nleaf]
/external/chromium_org/third_party/icu/source/test/perf/perldriver/
H A DDataset.pm71 sub divide { subroutine
/external/icu/icu4c/source/test/perf/perldriver/
H A DDataset.pm71 sub divide { subroutine
/external/guava/guava/src/com/google/common/math/
H A DBigIntegerMath.java244 BigInteger sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
250 sqrt1 = sqrt0.add(x.divide(sqrt0)).shiftRight(1);
266 public static BigInteger divide(BigInteger p, BigInteger q, RoundingMode mode){ method in class:BigIntegerMath
269 return pDec.divide(qDec, 0, mode).toBigIntegerExact();
293 int approxSize = IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
381 result = result.divide(BigInteger.valueOf(i + 1));
H A DIntMath.java249 public static int divide(int p, int q, RoundingMode mode) { method in class:IntMath
H A DLongMath.java296 public static long divide(long p, long q, RoundingMode mode) { method in class:LongMath
416 a >>= aTwos; // divide out all 2s
418 b >>= bTwos; // divide out all 2s
426 a >>= Long.numberOfTrailingZeros(a); // divide out all 2s, since 2 doesn't divide b
592 result /= i / d; // (i/d) is guaranteed to divide result
616 // These values were generated by using checkedMultiply to see when the simple multiply/divide
/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
H A DIntegerValue.java111 public abstract IntegerValue divide(IntegerValue other) method in class:IntegerValue
297 public IntegerValue divide(UnknownIntegerValue other) method in class:IntegerValue
299 return divide((IntegerValue)other);
541 public IntegerValue divide(SpecificIntegerValue other) method in class:IntegerValue
543 return divide((IntegerValue)other);
785 public IntegerValue divide(ParticularIntegerValue other) method in class:IntegerValue
787 return divide((SpecificIntegerValue)other);
H A DLongValue.java112 public LongValue divide(LongValue other) method in class:LongValue
124 return other.divide(this);
269 public LongValue divide(SpecificLongValue other) method in class:LongValue
425 public LongValue divide(ParticularLongValue other) method in class:LongValue
427 return divide((SpecificLongValue)other);
/external/replicaisland/src/com/replica/replicaisland/
H A DVector2.java65 public final void divide(float magnitude) { method in class:Vector2
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java126 public SimpleBigDecimal divide(SimpleBigDecimal b) method in class:SimpleBigDecimal
130 return new SimpleBigDecimal(dividend.divide(b.bigInt), scale);
133 public SimpleBigDecimal divide(BigInteger b) method in class:SimpleBigDecimal
135 return new SimpleBigDecimal(bigInt.divide(b), scale);
/external/chromium_org/third_party/skia/experimental/
H A DSkSetPoly3To3_A.cpp18 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));
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c92 static int divide(int a, int b);
99 {"/", divide},
114 static int divide(int a, int b) { function
/external/e2fsprogs/intl/
H A Dplural-exp.h46 divide, /* Division. */ enumerator in enum:expression::operator
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java137 public UnsignedInteger divide(UnsignedInteger val) { method in class:UnsignedInteger
139 return asUnsigned(UnsignedInts.divide(value, val.value));
H A DUnsignedInts.java176 public static int divide(int dividend, int divisor) { method in class:UnsignedInts
H A DUnsignedLong.java134 public UnsignedLong divide(UnsignedLong val) { method in class:UnsignedLong
136 return asUnsigned(UnsignedLongs.divide(value, val.value));
H A DUnsignedLongs.java178 public static long divide(long dividend, long divisor) { method in class:UnsignedLongs
359 maxValueDivs[i] = divide(MAX_VALUE, i);

Completed in 2871 milliseconds

123