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

1 2

  /external/compiler-rt/lib/
divsf3.c 120 rep_t quotient = (uint64_t)reciprocal*(aSignificand << 1) >> 32; local
122 // Two cases: quotient is in [0.5, 1.0) or quotient is in [1.0, 2.0).
133 // We also take this time to right shift quotient if it falls in the [1,2)
136 if (quotient < (implicitBit << 1)) {
137 residual = (aSignificand << 24) - quotient * bSignificand;
140 quotient >>= 1;
141 residual = (aSignificand << 23) - quotient * bSignificand;
160 rep_t absResult = quotient & significandMask;
divdf3.c 134 rep_t quotient, quotientLo; local
135 wideMultiply(aSignificand << 2, reciprocal, &quotient, &quotientLo);
137 // Two cases: quotient is in [0.5, 1.0) or quotient is in [1.0, 2.0).
148 // We also take this time to right shift quotient if it falls in the [1,2)
151 if (quotient < (implicitBit << 1)) {
152 residual = (aSignificand << 53) - quotient * bSignificand;
155 quotient >>= 1;
156 residual = (aSignificand << 52) - quotient * bSignificand;
175 rep_t absResult = quotient & significandMask
    [all...]
  /external/chromium_org/v8/test/mjsunit/
top-level-assignments.js 90 Calculator.prototype.quotient = function() { return this.x / this.y; };
96 assertEquals(2, calc.quotient());
  /external/v8/test/mjsunit/
top-level-assignments.js 90 Calculator.prototype.quotient = function() { return this.x / this.y; };
96 assertEquals(2, calc.quotient());
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/cpu/arm/filters/
FEBlendNEON.h 42 uint16x8_t quotient = vshrq_n_u16(num, 8); local
43 uint16x8_t remainder = vaddq_u16(vsubq_u16(num, vmulq_u16(sixteenConst255, quotient)), sixteenConstOne);
44 return vaddq_u16(quotient, vshrq_n_u16(remainder, 8));
  /external/chromium_org/third_party/icu/source/i18n/
gregoimp.cpp 34 double quotient; local
35 quotient = uprv_floor(numerator / denominator);
36 remainder = (int32_t) (numerator - (quotient * denominator));
37 return (int32_t) quotient;
44 double quotient = floorDivide(dividend, divisor); local
45 remainder = dividend - (quotient * divisor);
47 // is a bug such that the quotient is off by one. If you doubt
53 double q = quotient;
54 quotient += (remainder < 0) ? -1 : +1;
55 if (q == quotient) {
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 193 * Otherwise, approximate the quotient, check, and correct if necessary. Our approximation is
198 long quotient = ((dividend >>> 1) / divisor) << 1; local
199 long rem = dividend - quotient * divisor;
200 return quotient + (compare(rem, divisor) >= 0 ? 1 : 0);
227 * Otherwise, approximate the quotient, check, and correct if necessary. Our approximation is
232 long quotient = ((dividend >>> 1) / divisor) << 1; local
233 long rem = dividend - quotient * divisor;
  /external/icu4c/i18n/
gregoimp.cpp 34 double quotient; local
35 quotient = uprv_floor(numerator / denominator);
36 remainder = (int32_t) (numerator - (quotient * denominator));
37 return (int32_t) quotient;
44 double quotient = floorDivide(dividend, divisor); local
45 remainder = dividend - (quotient * divisor);
47 // is a bug such that the quotient is off by one. If you doubt
53 double q = quotient;
54 quotient += (remainder < 0) ? -1 : +1;
55 if (q == quotient) {
    [all...]
  /libcore/luni/src/main/java/java/util/
Grego.java 194 long quotient = ((numerator + 1) / denominator) - 1; local
195 remainder[0] = numerator - (quotient * denominator);
196 return quotient;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Decimal.cpp 168 uint32_t quotient[4]; local
173 quotient[i] = static_cast<uint32_t>(work / divisor);
175 m_low = makeUInt64(quotient[0], quotient[1]);
176 m_high = makeUInt64(quotient[2], quotient[3]);
905 const Decimal quotient = *this / rhs;
906 return quotient.isSpecial() ? quotient : *this - (quotient.isNegative() ? quotient.ceiling() : quotient.floor()) * rhs
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEBlend.cpp 73 uint16_t quotient = value >> 8; local
74 uint16_t remainder = value - (quotient * 255) + 1;
75 return quotient + (remainder >> 8);
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 338 // The quotient delivers the first digits, and the remainder fits into a 64
345 uint32_t quotient; local
348 // Then need q (quotient) and r (remainder) as follows:
359 quotient = static_cast<uint32_t>(dividend / divisor);
363 quotient = static_cast<uint32_t>(dividend / divisor);
366 FillDigits32(quotient, buffer, length);
  /external/chromium_org/v8/src/
fixed-dtoa.cc 337 // The quotient delivers the first digits, and the remainder fits into a 64
344 uint32_t quotient; local
347 // Then need q (quotient) and r (remainder) as follows:
358 quotient = static_cast<uint32_t>(dividend / divisor);
362 quotient = static_cast<uint32_t>(dividend / divisor);
365 FillDigits32(quotient, buffer, length);
  /external/v8/src/
fixed-dtoa.cc 337 // The quotient delivers the first digits, and the remainder fits into a 64
344 uint32_t quotient; local
347 // Then need q (quotient) and r (remainder) as follows:
358 quotient = static_cast<uint32_t>(dividend / divisor);
362 quotient = static_cast<uint32_t>(dividend / divisor);
365 FillDigits32(quotient, buffer, length);
  /libcore/luni/src/main/java/java/math/
BigInt.java 300 static void division(BigInt dividend, BigInt divisor, BigInt quotient, BigInt remainder) {
302 if (quotient != null) {
303 quotient.makeValid();
304 quot = quotient.bignum;
BigInteger.java 922 BigInt quotient = new BigInt(); local
924 BigInt.division(getBigInt(), divisorBigInt, quotient, remainder); local
925 return new BigInteger[] {new BigInteger(quotient), new BigInteger(remainder) };
937 BigInt quotient = new BigInt(); local
938 BigInt.division(getBigInt(), divisor.getBigInt(), quotient, null); local
    [all...]
BigDecimal.java 1070 BigInteger quotient = quotAndRem[0]; local
1103 long quotient = scaledDividend \/ scaledDivisor; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 352 int quotient = difference / 28; local
353 int product = (quotient) * 28;
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 1227 LowDwVfpRegister quotient = double_scratch0(); local
1257 __ vmul(double_scratch0(), divisor, quotient); local
    [all...]
  /external/v8/src/arm/
lithium-codegen-arm.cc 935 DwVfpRegister quotient = double_scratch0(); local
938 ASSERT(!dividend.is(quotient));
939 ASSERT(!divisor.is(quotient));
    [all...]
  /external/zxing/core/
core.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 

Completed in 6632 milliseconds

1 2