HomeSort by relevance Sort by last modified time
    Searched refs:subtract (Results 51 - 75 of 135) sorted by null

1 23 4 5 6

  /libcore/luni/src/main/java/java/math/
BigDecimal.java 857 tempBI = larger.getUnscaledValue().subtract(
877 public BigDecimal subtract(BigDecimal subtrahend) { method in class:BigDecimal
930 public BigDecimal subtract(BigDecimal subtrahend, MathContext mc) { method in class:BigDecimal
    [all...]
  /external/icu4c/test/perf/perldriver/
Output.pm 362 my $ratio = $baseLinePO->subtract($perOperation);
379 my $ratio = $baseLinePO->subtract($perOperation);
  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigIntegerTest.java 136 .setBit(16).subtract(two)));
150 .setBit(16).subtract(two)));
153 .setBit(16).subtract(two).negate()));
486 assertTrue(">>1 == /2", f.subtract(one).divide(two).equals(e));
961 || r.equals(mod.subtract(i2)));
972 BigInteger k = j.subtract(two);
    [all...]
BigDecimalTest.java 740 * @tests java.math.BigDecimal#subtract(java.math.BigDecimal)
745 BigDecimal result = sub1.subtract(sub2);
749 BigDecimal result2 = sub2.subtract(sub1);
757 result = sub1.subtract(sub2);
761 result = sub1.subtract(sub2);
766 result = sub1.subtract(sub2);
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 851 /* Subtract the significand of the RHS with a borrow flag. Returns
1070 /* Shift the significand left BITS bits, subtract BITS from its exponent. */
    [all...]
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 158 .setBit(16).subtract(two)));
172 .setBit(16).subtract(two)));
175 .setBit(16).subtract(two).negate()));
221 // q = p.subtract(BigInteger.ONE).divide(TWO);
321 BigInteger wpMinusOne = wp.subtract(BigInteger.ONE);
657 assertTrue(">>1 == /2", f.subtract(one).divide(two).equals(e));
    [all...]
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 258 EXPECT_EQ(Full.subtract(APInt(16, 4)), Full);
259 EXPECT_EQ(Empty.subtract(APInt(16, 4)), Empty);
260 EXPECT_EQ(Some.subtract(APInt(16, 4)),
262 EXPECT_EQ(Wrap.subtract(APInt(16, 4)),
264 EXPECT_EQ(One.subtract(APInt(16, 4)),
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 129 /*package*/ synchronized int subtract(T object) { method in class:ContentCache.CounterMap
309 int count = sActiveCursors.subtract(mCursor);
657 mLockMap.subtract(id);
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 36 // subtract a week of microseconds from the current time.
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.cpp 136 // We need to subtract them from the region, move them and re-add them.
137 m_dirtyRegion.subtract(scrollRect);
147 Region scrollRepaintRegion = subtract(scrollRect, translate(scrollRect, scrollOffset));
  /dalvik/vm/arch/arm/
CallEABI.S 196 @ count of double-words from r2, multiply it by 8, and subtract that
334 @ We have the padded-out word count in r2. We subtract 2 from it
338 subs r2, r2, #2 @ subtract 2 (for contents of r2/r3)
348 bic sp, #4 @ subtract another 4 ifn
  /external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxyImpl.cpp 103 unpaintedRegion.subtract(IntRect(IntPoint(), m_backingStore->size()));
  /frameworks/base/tools/preload/
MemoryUsage.java 107 MemoryUsage subtract(MemoryUsage baseline) { method in class:MemoryUsage
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 68 * subtract 15 days from 1 month. See the javadoc of those methods
449 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
485 * @see #subtract(Duration)
580 * <p>Since there's no way to meaningfully subtract 1 day from 1 month,
603 * @param rhs <code>Duration</code> to subtract from this <code>Duration</code>.
617 public Duration subtract(final Duration rhs) { method in class:Duration
    [all...]
  /external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalArithmeticTest.java 29 * Methods: add, subtract, multiply, divide
172 * Subtract two numbers of equal positive scales
183 BigDecimal result = aNumber.subtract(bNumber);
189 * Subtract two numbers of equal positive scales using MathContext
201 BigDecimal result = aNumber.subtract(bNumber, mc);
207 * Subtract two numbers of equal negative scales
218 BigDecimal result = aNumber.subtract(bNumber);
224 * Subtract two numbers of different scales; the first is positive
235 BigDecimal result = aNumber.subtract(bNumber);
241 * Subtract two numbers of different scales using MathContext
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 488 | {subtract} [left]:add_subtract minus [right]:factor // x.y - a.b
489 {->New expression.subtract(left.expression, right.expression)}
697 | {subtract} [left]:expression [right]:expression // x - y
  /external/proguard/lib/
proguard.jar 
  /dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java 676 Method subtract = binaryOpMethod(int.class, BinaryOp.SUBTRACT); local
677 assertEquals(71, subtract.invoke(null, 75, 4));
724 Method subtract = binaryOpMethod(long.class, BinaryOp.SUBTRACT); local
725 assertEquals(71L, subtract.invoke(null, 75L, 4L));
775 Method subtract = binaryOpMethod(float.class, BinaryOp.SUBTRACT); local
794 Method subtract = binaryOpMethod(double.class, BinaryOp.SUBTRACT); local
    [all...]
  /external/v8/benchmarks/
crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js     [all...]
  /frameworks/base/libs/ui/
Region.cpp 171 const Region Region::subtract(const Rect& rhs) const {
188 const Region Region::subtract(const Region& rhs) const {
228 const Region Region::subtract(const Region& rhs, int dx, int dy) const {
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalArithmeticTest.java 61 a.round(mc).subtract(b.round(mc)).toString());
62 res = a.subtract(b, mc);
70 res = a.subtract(b, mc);
  /external/oprofile/events/x86-64/family10/
unit_masks 243 0x01 Single Precision add/subtract ops
246 0x08 Double precision add/subtract ops
360 0x01 Add/subtract ops

Completed in 929 milliseconds

1 23 4 5 6