/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
SimpleBigDecimal.java | 129 BigInteger dividend = bigInt.shiftLeft(scale); local 130 return new SimpleBigDecimal(dividend.divide(b.bigInt), scale);
|
/external/valgrind/main/none/tests/x86/ |
bug126147-x86.c | 55 %eax = dividend 75 " movl 0x1c(%eax), %eax # dividend\n"
|
/external/aac/libSBRdec/src/ |
transcendent.h | 207 static inline void FDK_divide_MantExp(FIXP_SGL a_m, /*!< Mantissa of dividend a */ 208 SCHAR a_e, /*!< Exponent of dividend a */ 263 static inline void FDK_divide_MantExp(FIXP_DBL a_m, /*!< Mantissa of dividend a */ 264 SCHAR a_e, /*!< Exponent of dividend a */
|
/external/compiler-rt/lib/arm/ |
udivmodsi4.S | 48 // the MSB of the divisor with that of the dividend (If this shift is
|
udivsi3.S | 47 // the MSB of the divisor with that of the dividend (If this shift is
|
umodsi3.S | 38 // the MSB of the divisor with that of the dividend.
|
/hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/ |
AKFS_Direction.c | 79 /* atan2(y, x) -> divisor and dividend is opposite from mathematical equation. */
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
Decimal.cpp | 161 uint32_t dividend[4]; local 162 dividend[0] = lowUInt32(m_low); 163 dividend[1] = highUInt32(m_low); 164 dividend[2] = lowUInt32(m_high); 165 dividend[3] = highUInt32(m_high); 170 const uint64_t work = makeUInt64(dividend[i], remainder);
|
/external/jpeg/ |
jcdctmgr.c | 236 * quotients, we have to force the dividend positive for portability. 327 * quotients, we have to force the dividend positive for portability.
|
/external/qemu/distrib/jpeg-6b/ |
jcdctmgr.c | 236 * quotients, we have to force the dividend positive for portability. 327 * quotients, we have to force the dividend positive for portability.
|
/libcore/luni/src/main/java/java/math/ |
BigInt.java | 300 static void division(BigInt dividend, BigInt divisor, BigInt quotient, BigInt remainder) { 314 NativeBN.BN_div(quot, rem, dividend.bignum, divisor.bignum);
|
/external/chromium_org/v8/src/ia32/ |
lithium-codegen-ia32.cc | 1456 Register dividend = ToRegister(instr->left()); local 1567 Register dividend = ToRegister(instr->left()); local [all...] |
lithium-ia32.cc | 1476 LOperand* dividend = UseFixed(instr->left(), eax); local 1514 LOperand* dividend = UseFixed(instr->left(), eax); local 1524 LOperand* dividend = UseRegister(instr->left()); local 1529 LOperand* dividend = divisor_si < -1 ? UseTempRegister(instr->left()) : local 1536 LOperand* dividend = UseFixed(instr->left(), eax); local [all...] |
/external/llvm/lib/Target/X86/ |
X86SchedHaswell.td | 103 // This is quite rough, latency depends on the dividend.
|
X86SchedSandyBridge.td | 98 // This is quite rough, latency depends on the dividend.
|
/external/guava/guava/src/com/google/common/collect/ |
Sets.java | [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Sets.java | [all...] |
/external/chromium_org/v8/src/arm/ |
lithium-codegen-arm.cc | 1194 DwVfpRegister dividend = ToDoubleRegister(instr->temp()); local 1341 const Register dividend = ToRegister(instr->left()); local [all...] |
/external/llvm/lib/Support/ |
APFloat.cpp | 1021 integerPart *lhsSignificand, *dividend, *divisor; 1032 dividend = new integerPart[partsCount * 2]; 1034 dividend = scratch; 1036 divisor = dividend + partsCount; 1038 /* Copy the dividend and divisor as they will be modified in-place. */ 1040 dividend[i] = lhsSignificand[i]; 1056 /* Normalize the dividend. */ 1057 bit = precision - APInt::tcMSB(dividend, partsCount) - 1; 1060 APInt::tcShiftLeft(dividend, partsCount, bit); 1063 /* Ensure the dividend >= divisor initially for the loop below [all...] |
/external/chromium_org/v8/src/x64/ |
lithium-codegen-x64.cc | 1077 const Register dividend = ToRegister(instr->left()); local 1159 Register dividend = ToRegister(instr->left()); local [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
gregoimp.h | 72 * such that dividend = quotient*divisor + remainder and 80 static double floorDivide(double dividend, double divisor,
|
/external/icu4c/i18n/ |
gregoimp.h | 72 * such that dividend = quotient*divisor + remainder and 80 static double floorDivide(double dividend, double divisor,
|
/external/valgrind/main/VEX/priv/ |
host_s390_defs.h | 126 S390_INSN_DIV, /* 2n-bit dividend; n-bit divisor; n-bit quot/rem */ 127 S390_INSN_DIVS, /* n-bit dividend; n-bit divisor; n-bit quot/rem */
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
xalloc.h | 69 calculations, so the conservative dividend to use here is
|
/art/runtime/interpreter/ |
interpreter.cc | [all...] |