HomeSort by relevance Sort by last modified time
    Searched defs:divide (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/sqlite/src/tool/
spaceanal.tcl 194 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/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /external/icu4c/test/perf/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 137 public UnsignedInteger divide(UnsignedInteger val) { method in class:UnsignedInteger
139 return asUnsigned(UnsignedInts.divide(value, val.value));
UnsignedInts.java 176 public static int divide(int dividend, int divisor) { method in class:UnsignedInts
UnsignedLong.java 134 public UnsignedLong divide(UnsignedLong val) { method in class:UnsignedLong
136 return asUnsigned(UnsignedLongs.divide(value, val.value));
UnsignedLongs.java 178 public static long divide(long dividend, long divisor) { method in class:UnsignedLongs
359 maxValueDivs[i] = divide(MAX_VALUE, i);
  /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);
ParticularDoubleValue.java 100 public DoubleValue divide(DoubleValue other) method in class:ParticularDoubleValue
107 return other.divide(this);
154 public DoubleValue divide(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 100 public FloatValue divide(FloatValue other) method in class:ParticularFloatValue
107 return other.divide(this);
154 public FloatValue divide(ParticularFloatValue other) method in class:ParticularFloatValue
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);
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);
UnknownDoubleValue.java 80 public DoubleValue divide(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 80 public FloatValue divide(FloatValue other) method in class:UnknownFloatValue
UnknownLongValue.java 81 public LongValue divide(LongValue other) method in class:UnknownLongValue
IntegerValue.java 111 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);
LongValue.java 112 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);
ParticularIntegerValue.java 127 public IntegerValue divide(IntegerValue other) method in class:ParticularIntegerValue
136 return other.divide(this);
255 public IntegerValue divide(ParticularIntegerValue other) method in class:ParticularIntegerValue
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 65 public final void divide(float magnitude) { method in class:Vector2
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
SimpleBigDecimal.java 126 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/e2fsprogs/intl/
plural-exp.h 46 divide, /* Division. */ enumerator in enum:expression::operator
  /external/guava/guava/src/com/google/common/math/
IntMath.java 249 public static int divide(int p, int q, RoundingMode mode) { method in class:IntMath
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 261 public void divide(float value) { method in class:TexturePixel

Completed in 293 milliseconds

1 2 3 4 5