| /libcore/benchmarks/src/benchmarks/regression/ |
| BigIntegerBenchmark.java | 30 x.divide(y);
|
| /ndk/tests/build/b8247455-hidden-cxa/jni/ |
| Android.mk | 8 # File idiv.cpp contains code potentially causes divide-by-zero exception. libidiv.so
|
| /external/cmockery/cmockery_0_1_2/src/example/ |
| calculator_test.c | 44 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/chromium_org/third_party/icu/source/common/ |
| dictbe.h | 117 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 174 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 230 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 286 * <p>Divide up a range of known dictionary characters.</p> 349 * <p>Divide up a range of known dictionary characters handled by this break engine.</p>
|
| /external/compiler-rt/lib/builtins/i386/ |
| divdi3.S | 11 // No other exceptions are generated, as the divide cannot overflow. 14 // on x86_64. The performance goal is ~40 cycles per divide, which is faster than 25 /* This is currently implemented by wrapping the unsigned divide up in an absolute 70 cmpl %ebx, %edx // to avoid overflowing the upcoming divide. 106 subl %ebx, %edx // subtract bhi from ahi so that divide will not
|
| /external/icu/icu4c/source/common/ |
| dictbe.h | 117 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 174 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 230 * <p>Divide up a range of known dictionary characters handled by this break engine.</p> 286 * <p>Divide up a range of known dictionary characters.</p> 349 * <p>Divide up a range of known dictionary characters handled by this break engine.</p>
|
| /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);
|
| /external/skia/src/core/ |
| SkPoint.cpp | 122 // divide by inf. and return (0,0) vector. 127 // we perform the divide with the double magmag, to stay exactly the 128 // same as setLength. It would be faster to perform the divide with 168 // divide by inf. and return (0,0) vector. 194 // divide by inf. and return (0,0) vector.
|
| /external/valgrind/main/docs/internals/ |
| s390-opcodes.csv | 55 d,divide,implemented, 56 dd,"divide (long)","won't do","hfp instruction" 57 ddr,"divide (long)","won't do","hfp instruction" 58 de,"divide (short)","won't do","hfp instruction" 59 der,"divide (short)","won't do","hfp instruction" 61 dp,"divide decimal","not implemented", 62 dr,divide,implemented, 63 dxr,"divide (ext.)","won't do","hfp instruction" 282 dxbr,"divide extended bfp",implemented, 283 ddbr,"divide long bfp",implemented [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_binop.py | 134 """Divide two Rats, or a Rat and a number.""" 146 """Divide two Rats, or a Rat and a number (reversed args).""" 158 """Divide two Rats, returning the floored result.""" 167 """Divide two Rats, returning the floored result (reversed args).""" 172 """Divide two Rats, returning quotient and remainder.""" 181 """Divide two Rats, returning quotient and remainder (reversed args)."""
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_binop.py | 134 """Divide two Rats, or a Rat and a number.""" 146 """Divide two Rats, or a Rat and a number (reversed args).""" 158 """Divide two Rats, returning the floored result.""" 167 """Divide two Rats, returning the floored result (reversed args).""" 172 """Divide two Rats, returning quotient and remainder.""" 181 """Divide two Rats, returning quotient and remainder (reversed args)."""
|
| /external/sonivox/arm-hybrid-22k/lib_src/ |
| eas_wtengine.c | 111 /*lint -e{704} <avoid divide>*/ 120 /*lint -e{704} <avoid divide>*/ 128 /*lint -e{704} <avoid divide>*/ 138 /*lint -e{704} <avoid divide>*/ 148 /*lint -e{704} <avoid divide>*/ 209 /*lint -e{704} <avoid divide>*/ 213 /*lint -e{704} <avoid divide>*/ 218 /*lint -e{704} <avoid divide>*/ 301 /*lint -e{704} <avoid divide>*/ 305 /*lint -e{704} <avoid divide>*/ [all...] |
| /external/sonivox/arm-wt-22k/lib_src/ |
| eas_wtengine.c | 111 /*lint -e{704} <avoid divide>*/ 120 /*lint -e{704} <avoid divide>*/ 128 /*lint -e{704} <avoid divide>*/ 138 /*lint -e{704} <avoid divide>*/ 148 /*lint -e{704} <avoid divide>*/ 209 /*lint -e{704} <avoid divide>*/ 213 /*lint -e{704} <avoid divide>*/ 218 /*lint -e{704} <avoid divide>*/ 301 /*lint -e{704} <avoid divide>*/ 305 /*lint -e{704} <avoid divide>*/ [all...] |
| /external/clang/include/clang/Basic/ |
| Sanitizers.def | 59 SANITIZER("float-divide-by-zero", FloatDivideByZero) 61 SANITIZER("integer-divide-by-zero", IntegerDivideByZero)
|
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| DivZeroChecker.cpp | 63 // Divide-by-undefined handled in the generic checking for uses of 68 // Check for divide by zero.
|
| /external/guava/guava-tests/test/com/google/common/math/ |
| IntMathTest.java | 264 new BigDecimal(valueOf(p)).divide(new BigDecimal(valueOf(q)), 0, mode).intValue(); 265 assertEquals(p + "/" + q, expected, IntMath.divide(p, q, mode)); 271 @GwtIncompatible("-2147483648/-1 not expected to divide evenly") 278 assertEquals(p + "/" + q, p, IntMath.divide(p, q, UNNECESSARY) * q); 279 assertTrue(p + "/" + q + " expected to divide evenly", dividesEvenly); 281 assertFalse(p + "/" + q + " not expected to divide evenly", dividesEvenly); 291 assertEquals(0, IntMath.divide(0, q, mode)); 301 IntMath.divide(p, 0, mode);
|
| /external/libcxx/test/numerics/numarray/template.gslice.array/gslice.array.comp.assign/ |
| Android.mk | 35 test_name := numerics/numarray/template.gslice.array/gslice.array.comp.assign/divide 36 test_src := divide.pass.cpp
|
| /external/libcxx/test/numerics/numarray/template.indirect.array/indirect.array.comp.assign/ |
| Android.mk | 35 test_name := numerics/numarray/template.indirect.array/indirect.array.comp.assign/divide 36 test_src := divide.pass.cpp
|
| /external/libcxx/test/numerics/numarray/template.mask.array/mask.array.comp.assign/ |
| Android.mk | 35 test_name := numerics/numarray/template.mask.array/mask.array.comp.assign/divide 36 test_src := divide.pass.cpp
|
| /external/libcxx/test/numerics/numarray/template.slice.array/slice.arr.comp.assign/ |
| Android.mk | 35 test_name := numerics/numarray/template.slice.array/slice.arr.comp.assign/divide 36 test_src := divide.pass.cpp
|
| /external/antlr/antlr-3.4/antlr3-maven-plugin/src/site/apt/examples/ |
| libraries.apt | 4 as well as the ability to divide up functional components of large grammars. However it has
|
| /external/chromium_org/third_party/skia/src/animator/ |
| SkTime.cpp | 66 s = (s + 500) / 1000; // rounded divide
|
| /external/chromium_org/third_party/skia/src/pathops/ |
| SkPathOpsTriangle.cpp | 26 // introduces error with divide; doesn't short circuit on early answer
|
| /external/chromium_org/third_party/skia/tools/ |
| Stats.h | 42 // All samples are the same value. Don't divide by zero.
|