/external/chromium_org/third_party/libwebp/utils/ |
D | alpha_processing.c | 26 static uint32_t Mult(uint8_t x, uint32_t mult) { in Mult() function 148 out |= Mult(argb >> 0, scale) << 0; in WebPMultARGBRow() 149 out |= Mult(argb >> 8, scale) << 8; in WebPMultARGBRow() 150 out |= Mult(argb >> 16, scale) << 16; in WebPMultARGBRow() 176 ptr[x] = Mult(ptr[x], scale); in WebPMultRow()
|
/external/webp/src/dsp/ |
D | alpha_processing.c | 26 static uint32_t Mult(uint8_t x, uint32_t mult) { in Mult() function 148 out |= Mult(argb >> 0, scale) << 0; in MultARGBRow() 149 out |= Mult(argb >> 8, scale) << 8; in MultARGBRow() 150 out |= Mult(argb >> 16, scale) << 16; in MultARGBRow() 167 ptr[x] = Mult(ptr[x], scale); in MultRow()
|
/external/chromium_org/third_party/libwebp/dsp/ |
D | alpha_processing.c | 26 static uint32_t Mult(uint8_t x, uint32_t mult) { in Mult() function 148 out |= Mult(argb >> 0, scale) << 0; in MultARGBRow() 149 out |= Mult(argb >> 8, scale) << 8; in MultARGBRow() 150 out |= Mult(argb >> 16, scale) << 16; in MultARGBRow() 167 ptr[x] = Mult(ptr[x], scale); in MultRow()
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | HasPositionalPredChecker.java | 33 import org.apache.xpath.operations.Mult; 108 (pred instanceof Mult) || in visitPredicate()
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Mult.java | 30 public class Mult extends Operation class
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | Compiler.java | 52 import org.apache.xpath.operations.Mult; 393 return compileOperation(new Mult(), opPos); in mult()
|
/external/llvm/lib/Target/Mips/ |
D | MicroMipsInstrInfo.td | 143 def MULT_MM : MMRel, Mult<"mult", II_MULT, GPR32Opnd, [HI0, LO0]>, 145 def MULTu_MM : MMRel, Mult<"multu", II_MULTU, GPR32Opnd, [HI0, LO0]>,
|
D | MipsSEISelLowering.cpp | 361 case ISD::SMUL_LOHI: return lowerMulDiv(Op, MipsISD::Mult, true, true, DAG); in LowerOperation() 363 case ISD::MULHS: return lowerMulDiv(Op, MipsISD::Mult, false, true, DAG); in LowerOperation() 365 case ISD::MUL: return lowerMulDiv(Op, MipsISD::Mult, true, false, DAG); in LowerOperation() 1264 SDValue Mult = DAG.getNode(NewOpc, DL, MVT::Untyped, in lowerMulDiv() local 1269 Lo = DAG.getNode(MipsISD::MFLO, DL, Ty, Mult); in lowerMulDiv() 1271 Hi = DAG.getNode(MipsISD::MFHI, DL, Ty, Mult); in lowerMulDiv() 1529 return lowerDSPIntr(Op, DAG, MipsISD::Mult); in lowerINTRINSIC_WO_CHAIN()
|
D | Mips64InstrInfo.td | 193 def DMULT : Mult<"dmult", II_DMULT, GPR64Opnd, [HI0_64, LO0_64]>, 195 def DMULTu : Mult<"dmultu", II_DMULTU, GPR64Opnd, [HI0_64, LO0_64]>,
|
D | MipsISelLowering.h | 79 Mult, enumerator
|
D | MipsInstrInfo.td | 94 // Mult nodes. 95 def MipsMult : SDNode<"MipsISD::Mult", SDT_MipsMultDiv>; 836 class Mult<string opstr, InstrItinClass itin, RegisterOperand RO, 1275 def MULT : MMRel, Mult<"mult", II_MULT, GPR32Opnd, [HI0, LO0]>, 1277 def MULTu : MMRel, Mult<"multu", II_MULTU, GPR32Opnd, [HI0, LO0]>,
|
D | MipsISelLowering.cpp | 139 case MipsISD::Mult: return "MipsISD::Mult"; in getTargetNodeName()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64SchedA53.td | 44 def A53UnitFPMDS : ProcResource<1> { let BufferSize = 0; } // FP Mult/Div/Sqrt
|
/external/chromium_org/v8/src/mips/ |
D | macro-assembler-mips.h | 580 DEFINE_INSTRUCTION2(Mult);
|
D | macro-assembler-mips.cc | 686 void MacroAssembler::Mult(Register rs, const Operand& rt) { in Mult() function in v8::internal::MacroAssembler 5749 Mult(dividend, Operand(at)); in TruncatingDiv()
|
D | full-codegen-mips.cc | 2349 __ Mult(left, scratch1); in EmitInlineSmiBinaryOp() local 3927 __ Mult(array_length, scratch1); in EmitFastAsciiArrayJoin() local
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 752 APInt Mult(W, i); in BinomialCoefficient() local 753 unsigned TwoFactors = Mult.countTrailingZeros(); in BinomialCoefficient() 755 Mult = Mult.lshr(TwoFactors); in BinomialCoefficient() 756 OddFactorial *= Mult; in BinomialCoefficient()
|