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

1 2 3

  /external/icu4c/test/perf/perldriver/
Dataset.pm 69 # Divide two Datasets and return a new one, maintaining the
71 sub divide { subroutine
  /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
ParticularLongValue.java 100 public LongValue divide(LongValue other) method in class:ParticularLongValue
109 return other.divide(this);
188 public LongValue divide(ParticularLongValue other) method in class:ParticularLongValue
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);
UnknownIntegerValue.java 97 public IntegerValue divide(IntegerValue other) method in class:UnknownIntegerValue
  /external/replicaisland/src/com/replica/replicaisland/
Vector2.java 65 public final void divide(float magnitude) { method in class:Vector2
  /external/bouncycastle/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/dropbear/libtomcrypt/src/math/
gmp_desc.c 251 static int divide(void *a, void *b, void *c, void *d) function
424 &divide,
ltm_desc.c 263 static int divide(void *a, void *b, void *c, void *d) function
430 &divide,
tfm_desc.c 271 static int divide(void *a, void *b, void *c, void *d) function
718 &divide,
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 205 movs r3,r3,lsr #20 @ divide by 1024*1024 to get M
336 lsrs r3,r2,#1 @ divide by 2
385 bl divide @ Q=r7,$0, R=r8,$1
388 adds r3,r7,#0 @ move Q in for next divide, update flags
402 @ Divide - because ARM has no hardware int divide
409 divide: label
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalArithmeticTest.java 197 a.round(mc).divide(b.round(mc)).toString());
198 res = a.divide(b, BigDecimal.ROUND_FLOOR);
203 res = a.divide(b, BigDecimal.ROUND_UNNECESSARY);
209 res = a.divide(b, BigDecimal.ROUND_UNNECESSARY);
223 res = a.divide(b, -1220, BigDecimal.ROUND_FLOOR);
228 res = a.divide(b, 1, BigDecimal.ROUND_UNNECESSARY);
234 res = a.divide(b, 0, BigDecimal.ROUND_UNNECESSARY);
252 a.round(mc).divide(b.round(mc)).toString());
253 res = a.divide(b, mc);
259 res = a.divide(b, mc)
    [all...]

Completed in 1106 milliseconds

1 2 3