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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/components/rappor/
rappor_parameters.h 26 // The maximum number of cohorts we divide clients into.
29 // The number of cohorts to divide the reports for this metric into.
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedLongsTest.java 59 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/valgrind/main/none/tests/s390x/
dfp-1.stdout.exp 14 64-bit DIVIDE
30 128-bit DIVIDE
  /external/proguard/src/proguard/evaluation/value/
SpecificDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:SpecificDoubleValue
87 return other.divide(this);
134 public DoubleValue divide(SpecificDoubleValue other) method in class:SpecificDoubleValue
136 return new CompositeDoubleValue(this, CompositeDoubleValue.DIVIDE, other);
141 return new CompositeDoubleValue(other, CompositeDoubleValue.DIVIDE, this);
SpecificFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:SpecificFloatValue
87 return other.divide(this);
134 public FloatValue divide(SpecificFloatValue other) method in class:SpecificFloatValue
136 return new CompositeFloatValue(this, CompositeFloatValue.DIVIDE, other);
141 return new CompositeFloatValue(other, CompositeFloatValue.DIVIDE, this);
SpecificIntegerValue.java 95 public IntegerValue divide(IntegerValue other) method in class:SpecificIntegerValue
104 return other.divide(this);
227 public IntegerValue divide(SpecificIntegerValue other) method in class:SpecificIntegerValue
230 return new CompositeIntegerValue(this, CompositeIntegerValue.DIVIDE, other);
236 return new CompositeIntegerValue(other, CompositeIntegerValue.DIVIDE, this);
SpecificLongValue.java 80 public LongValue divide(LongValue other) method in class:SpecificLongValue
89 return other.divide(this);
172 public LongValue divide(SpecificLongValue other) method in class:SpecificLongValue
175 return new CompositeLongValue(this, CompositeLongValue.DIVIDE, other);
181 return new CompositeLongValue(other, CompositeLongValue.DIVIDE, this);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
randoms.decTest 32 xdiv001 divide 905.67402 -202896611.E-780472620 -> -4.46372177E+780472614 Inexact Rounded
40 xdiv002 divide 3915134.7 -597164907. -> -0.00655620358 Inexact Rounded
48 xdiv003 divide 309759261 62663.487 -> 4943.21775 Inexact Rounded
56 xdiv004 divide 3.93591888E-236595626 7242375.00 -> 5.43456930E-236595633 Inexact Rounded
64 xdiv005 divide 323902.714 -608669.607E-657060568 -> -5.32148657E+657060567 Inexact Rounded
72 xdiv006 divide 5.11970092 -8807.22036 -> -0.000581307236 Inexact Rounded
80 xdiv007 divide -7.99874516 4561.83758 -> -0.00175340420 Inexact Rounded
88 xdiv008 divide 297802878 -927206.324 -> -321.182967 Inexact Rounded
96 xdiv009 divide -766.651824 31300.3619 -> -0.0244933853 Inexact Rounded
104 xdiv010 divide -56746.8689E+934981942 471002521. -> -1.20481030E+934981938 Inexact Rounde
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
randoms.decTest 32 xdiv001 divide 905.67402 -202896611.E-780472620 -> -4.46372177E+780472614 Inexact Rounded
40 xdiv002 divide 3915134.7 -597164907. -> -0.00655620358 Inexact Rounded
48 xdiv003 divide 309759261 62663.487 -> 4943.21775 Inexact Rounded
56 xdiv004 divide 3.93591888E-236595626 7242375.00 -> 5.43456930E-236595633 Inexact Rounded
64 xdiv005 divide 323902.714 -608669.607E-657060568 -> -5.32148657E+657060567 Inexact Rounded
72 xdiv006 divide 5.11970092 -8807.22036 -> -0.000581307236 Inexact Rounded
80 xdiv007 divide -7.99874516 4561.83758 -> -0.00175340420 Inexact Rounded
88 xdiv008 divide 297802878 -927206.324 -> -321.182967 Inexact Rounded
96 xdiv009 divide -766.651824 31300.3619 -> -0.0244933853 Inexact Rounded
104 xdiv010 divide -56746.8689E+934981942 471002521. -> -1.20481030E+934981938 Inexact Rounde
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
weight.h 40 // Divide: for all a,b,c s.t. Times(a, b) == c
41 // --> b = Divide(c, a, DIVIDE_LEFT) if a left semiring and b.Member()
42 // --> a = Divide(c, b, DIVIDE_RIGHT) if a right semiring and a.Member()
43 // --> b = Divide(c, a)
44 // = Divide(c, a, DIVIDE_ANY)
45 // = Divide(c, a, DIVIDE_LEFT)
46 // = Divide(c, a, DIVIDE_RIGHT) if a commutative semiring
reweight.h 71 arc.weight = Divide(Times(arc.weight, potential[arc.nextstate]),
75 arc.weight = Divide(Times(potential[state], arc.weight),
82 Divide(fst->Final(state), potential[state], DIVIDE_LEFT));
99 Divide(Weight::One(), potential[state], DIVIDE_RIGHT),
106 fst->SetFinal(state, Times(Divide(Weight::One(), potential[state],
114 Divide(Weight::One(), potential[fst->Start()], DIVIDE_RIGHT);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
calculator.html 28 <button class="divide" title="divide" data-button="divide"></button>
  /external/dexmaker/src/main/java/com/google/dexmaker/
BinaryOp.java 27 * {@link #DIVIDE}, and {@link #REMAINDER}) support ints, longs, floats and
35 * For int and long operands, {@link #DIVIDE} and {@link #REMAINDER} throw
62 DIVIDE() {
  /external/chromium_org/third_party/skia/tools/
CopyTilesRenderer.h 20 * it will divide the picture into large tiles and draw the picture once for each large tile.
  /external/chromium_org/tools/gyp/test/win/compiler-flags/
exception-handling.gyp 8 # (divide by zero was getting optimized away in VS2010).
  /external/skia/tools/
CopyTilesRenderer.h 20 * it will divide the picture into large tiles and draw the picture once for each large tile.
  /external/llvm/include/llvm/Transforms/Utils/
BypassSlowDivision.h 14 // positive and less than 256 use an unsigned 8-bit divide.
27 /// profitably bypassed and carried out with a shorter, faster divide.
IntegerDivision.h 35 /// Generate code to divide two integers, replacing Div with the generated
58 /// Generate code to divide two integers, replacing Div with the generated
65 /// Generate code to divide two integers, replacing Div with the generated
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
probability_utils.h 30 // backoff weight, we divide the probability by 2, which in our storing format means
39 // We divide the range [unigramProbability..255] in 16.5 steps - in other words, we want
  /external/speex/libspeex/
fixed_bfin.h 52 "LOOP divide%= LC0 = P0;\n\t"
53 "LOOP_BEGIN divide%=;\n\t"
55 "LOOP_END divide%=;\n\t"
79 "LOOP divide%= LC0 = P0;\n\t"
80 "LOOP_BEGIN divide%=;\n\t"
82 "LOOP_END divide%=;\n\t"
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_xform.h 49 /* KW: Clip functions now do projective divide as well. The projected
52 * calculations. Despite the fact that this divide could be done one
56 * Clipping is a convenient place to do the divide on x86 as it should be
59 * There are two cases where we wouldn't want to do the divide in cliptest:
61 * so the divide should be done elsewhere. This currently never
  /external/mesa3d/src/mesa/math/
m_xform.h 49 /* KW: Clip functions now do projective divide as well. The projected
52 * calculations. Despite the fact that this divide could be done one
56 * Clipping is a convenient place to do the divide on x86 as it should be
59 * There are two cases where we wouldn't want to do the divide in cliptest:
61 * so the divide should be done elsewhere. This currently never
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_texture_projection.cpp 31 * and does the divide internally, thus the presence of the projector
33 * logic for handling the divide.
  /external/chromium_org/third_party/webrtc/voice_engine/
level_indicator.cc 72 // Divide with 1000 to get in the range of 0-32 which is the range of
84 // Decay the absolute maximum (divide by 4)
  /external/chromium_org/v8/test/mjsunit/
math-floor-negative.js 32 // Divide by 10 to avoid overflow when smi-tagging at the end.
43 // Divide by 10 to avoid overflow when smi-tagging at the end.

Completed in 1018 milliseconds

12 3 4 5 6 7 8 91011>>