HomeSort by relevance Sort by last modified time
    Searched full:divide (Results 76 - 100 of 1557) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
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);
UnknownDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:UnknownFloatValue
  /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/clang/test/Lexer/
c90.c 9 int test1(int a,int b) {return a//* This is a divide followed by block comment in c89 mode */
  /external/compiler-rt/lib/builtins/i386/
moddi3.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
69 cmpl %ebx, %edx // to avoid overflowing the upcoming divide.
107 subl %ebx, %edx // subtract bhi from ahi so that divide will not
  /external/fonttools/Lib/fontTools/encodings/
MacRoman.py 28 'quotedblleft', 'quotedblright', 'quoteleft', 'quoteright', 'divide', 'lozenge',
  /external/llvm/include/llvm/Support/
ARMBuildAttributes.h 200 // hardware divide cannot be conveyed using AllowDIVIfExists or DisallowDIV
201 AllowDIVIfExists = 0, // Allow hardware divide if available in arch, or no
203 DisallowDIV = 1, // Hardware divide explicitly disallowed.
204 AllowDIVExt = 2, // Allow hardware divide as optional architecture
  /external/llvm/test/CodeGen/X86/
atom-bypass-slow-division-64.ll 5 ; Additional tests for 64-bit divide bypass
  /external/skia/src/animator/
SkTime.cpp 66 s = (s + 500) / 1000; // rounded divide

Completed in 534 milliseconds

1 2 34 5 6 7 8 91011>>