Searched refs:divide (Results 1 - 25 of 141) sorted by relevance

123456

/external/guava/guava-tests/test/com/google/common/primitives/
H A DUnsignedLongsTest.java59 assertEquals(2, UnsignedLongs.divide(14, 5));
60 assertEquals(0, UnsignedLongs.divide(0, 50));
61 assertEquals(1, UnsignedLongs.divide(0xfffffffffffffffeL, 0xfffffffffffffffdL));
62 assertEquals(0, UnsignedLongs.divide(0xfffffffffffffffdL, 0xfffffffffffffffeL));
63 assertEquals(281479271743488L, UnsignedLongs.divide(0xfffffffffffffffeL, 65535));
64 assertEquals(0x7fffffffffffffffL, UnsignedLongs.divide(0xfffffffffffffffeL, 2));
65 assertEquals(3689348814741910322L, UnsignedLongs.divide(0xfffffffffffffffeL, 5));
87 assertTrue(dividend - (divisor * UnsignedLongs.divide(dividend, divisor)
/external/llvm/test/MC/ARM/
H A Ddirective-arch_extension-idiv.s27 @ CHECK-ARMv6: error: instruction requires: divide in ARM
28 @ CHECK-THUMBv6: error: instruction requires: divide in ARM arm-mode
30 @ CHECK-ARMv6: error: instruction requires: divide in ARM
31 @ CHECK-THUMBv6: error: instruction requires: divide in ARM arm-mode
44 @ CHECK-ARMv6: error: instruction requires: divide in ARM
45 @ CHECK-THUMBv6: error: instruction requires: divide in ARM arm-mode
46 @ CHECK-ARMv7: error: instruction requires: divide in ARM arm-mode
47 @ CHECK-THUMBv7: error: instruction requires: divide in THUMB
49 @ CHECK-ARMv6: error: instruction requires: divide in ARM
50 @ CHECK-THUMBv6: error: instruction requires: divide i
[all...]
H A Dinvalid-idiv.s12 @ ARM-A15: error: instruction requires: divide in ARM
14 @ ARM-A15: error: instruction requires: divide in ARM
21 @ ARM: error: instruction requires: divide in ARM
23 @ ARM: error: instruction requires: divide in ARM
25 @ THUMB: error: instruction requires: divide in THUMB
27 @ THUMB: error: instruction requires: divide in THUMB
/external/proguard/src/proguard/evaluation/value/
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 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 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 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);
H A DParticularLongValue.java100 public LongValue divide(LongValue other) method in class:ParticularLongValue
109 return other.divide(this);
188 public LongValue divide(ParticularLongValue other) method in class:ParticularLongValue
H A DSpecificLongValue.java80 public LongValue divide(LongValue other) method in class:SpecificLongValue
89 return other.divide(this);
172 public LongValue divide(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownLongValue.java81 public LongValue divide(LongValue other) method in class:UnknownLongValue
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);
/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/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/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/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
H A Dcalculator_test.c44 extern int divide(int a, int b);
112 // Ensure divide() divides one integer by another correctly.
114 assert_int_equal(divide(10, 2), 5);
115 assert_int_equal(divide(2, 10), 0);
118 // Ensure divide() asserts when trying to divide by zero.
120 expect_assert_failure(divide(100, 0));
/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));
/external/e2fsprogs/intl/
H A Deval-plural.h64 case divide:
H A Dplural-exp.h46 divide, /* Division. */ enumerator in enum:expression::operator
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammar.g367 | ^('/' a=expr b=expr) { $value = $a.value.divide($b.value); }

Completed in 265 milliseconds

123456