HomeSort by relevance Sort by last modified time
    Searched full:multiplicand (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 46 void Multiply(uint32_t multiplicand) {
49 accumulator = (low_bits_ & kMask32) * multiplicand;
52 accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
55 accumulator = accumulator + (high_bits_ & kMask32) * multiplicand;
58 accumulator = accumulator + (high_bits_ >> 32) * multiplicand;
  /external/chromium_org/v8/src/
fixed-dtoa.cc 24 void Multiply(uint32_t multiplicand) {
27 accumulator = (low_bits_ & kMask32) * multiplicand;
30 accumulator = accumulator + (low_bits_ >> 32) * multiplicand;
33 accumulator = accumulator + (high_bits_ & kMask32) * multiplicand;
36 accumulator = accumulator + (high_bits_ >> 32) * multiplicand;
  /libcore/luni/src/main/java/java/math/
BigDecimal.java     [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.h 811 // Instruction for computing multiplier * multiplicand + addend.
815 LOperand* multiplicand) {
818 inputs_[2] = multiplicand;
823 LOperand* multiplicand() { return inputs_[2]; } function in class:v8::internal::FINAL
829 // Instruction for computing minuend - multiplier * multiplicand.
833 LOperand* multiplicand) {
836 inputs_[2] = multiplicand;
841 LOperand* multiplicand() { return inputs_[2]; } function in class:v8::internal::FINAL
    [all...]
lithium-codegen-arm.cc 1447 DwVfpRegister multiplicand = ToDoubleRegister(instr->multiplicand()); local
1459 DwVfpRegister multiplicand = ToDoubleRegister(instr->multiplicand()); local
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
synthesis-dct8.c 57 * @param u A signed 32-bit multiplicand
synthesis-sbc.c 210 * @param u A signed 16-bit multiplicand
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnt.h     [all...]
intrin.h     [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
modexp512-x86_64.pl 368 # pA: Multiplicand (1024 bits, 16 qwords)
369 # pB: Multiplicand (512 bits, 8 qwords)
621 # pA: Multiplicand (512 bits, 8 qwords)
622 # pB: Multiplicand (512 bits, 8 qwords)
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.h 806 // Instruction for computing multiplier * multiplicand + addend.
810 LOperand* multiplicand) {
813 inputs_[2] = multiplicand;
818 LOperand* multiplicand() { return inputs_[2]; } function in class:v8::internal::FINAL
    [all...]
lithium-codegen-mips.cc 1313 DoubleRegister multiplicand = ToDoubleRegister(instr->multiplicand()); local
    [all...]
  /external/chromium_org/v8/src/mips64/
lithium-mips64.h 805 // Instruction for computing multiplier * multiplicand + addend.
809 LOperand* multiplicand) {
812 inputs_[2] = multiplicand;
817 LOperand* multiplicand() { return inputs_[2]; } function in class:v8::internal::FINAL
    [all...]
lithium-codegen-mips64.cc 1270 DoubleRegister multiplicand = ToDoubleRegister(instr->multiplicand()); local
    [all...]
  /external/openssl/crypto/bn/asm/
modexp512-x86_64.pl 368 # pA: Multiplicand (1024 bits, 16 qwords)
369 # pB: Multiplicand (512 bits, 8 qwords)
621 # pA: Multiplicand (512 bits, 8 qwords)
622 # pB: Multiplicand (512 bits, 8 qwords)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp     [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp 429 /// SelectMLAV64LaneV128 - AArch64 supports vector MLAs where one multiplicand
435 SDValue MLAOp1; // Will hold ordinary multiplicand for MLA.
436 SDValue MLAOp2; // Will hold lane-accessed multiplicand for MLA.
    [all...]
  /external/valgrind/main/VEX/switchback/
test_emfloat.c     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
LongArray.java     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decNumber.c     [all...]
  /external/icu/icu4c/source/i18n/
decNumber.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
gmp.info-1     [all...]

Completed in 3635 milliseconds

1 2