Searched defs:Mul (Results 1 - 25 of 68) sorted by relevance

123

/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
H A DMul.java14 public class Mul implements IExpression { class in inherits:IExpression
20 public Mul(final IExpression l, final IExpression r) { method in class:Mul
/external/skia/src/core/
H A DSkMath.cpp95 size_t SkSafeMath::Mul(size_t x, size_t y) { function in class:SkSafeMath
/external/skqp/src/core/
H A DSkMath.cpp95 size_t SkSafeMath::Mul(size_t x, size_t y) { function in class:SkSafeMath
/external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/
H A DCloning.cpp56 BinaryOperator *Mul = BinaryOperator::Create(Instruction::Mul, V, V); local
60 BinaryOperator *MulClone = this->clone(Mul);
73 Mul->setHasNoUnsignedWrap();
77 MulClone = this->clone(Mul);
90 Mul->setHasNoSignedWrap();
94 MulClone = this->clone(Mul);
107 Mul->setHasNoUnsignedWrap(false);
111 MulClone = this->clone(Mul);
/external/gemmlowp/internal/
H A Dsimd_wrappers_msa.h107 inline Int32x4 Mul(Int32x4 a, std::int32_t b) { function in namespace:gemmlowp
H A Dsimd_wrappers_neon.h89 inline Int32x4 Mul(Int32x4 a, std::int32_t b) { return vmulq_n_s32(a, b); } function in namespace:gemmlowp
H A Dsimd_wrappers_sse.h82 inline Int32x4 Mul(Int32x4 a, std::int32_t b) { function in namespace:gemmlowp
83 return Mul(a, Dup<Int32x4>(b));
96 return Mul(a, DupLane<Lane>(b));
100 *acc = Add(*acc, Mul(lhs, rhs));
104 *acc = Add(*acc, Mul(lhs, rhs));
/external/skia/src/gpu/
H A DGrBlend.cpp44 static MaskedColor Mul(const MaskedColor& a, const MaskedColor& b) { function in class:MaskedColor
90 return MaskedColor::Mul(dst, value);
92 return MaskedColor::Mul(MaskedColor::Invert(dst), value);
94 return MaskedColor::Mul(MaskedColor::ExtractAlpha(dst), value);
96 return MaskedColor::Mul(MaskedColor::ExtractInverseAlpha(dst), value);
98 return MaskedColor::Mul(src, value);
100 return MaskedColor::Mul(MaskedColor::Invert(src), value);
102 return MaskedColor::Mul(MaskedColor::ExtractAlpha(src), value);
104 return MaskedColor::Mul(MaskedColor::ExtractInverseAlpha(src), value);
/external/skqp/src/gpu/
H A DGrBlend.cpp43 static MaskedColor Mul(const MaskedColor& a, const MaskedColor& b) { function in class:MaskedColor
89 return MaskedColor::Mul(dst, value);
91 return MaskedColor::Mul(MaskedColor::Invert(dst), value);
93 return MaskedColor::Mul(MaskedColor::ExtractAlpha(dst), value);
95 return MaskedColor::Mul(MaskedColor::ExtractInverseAlpha(dst), value);
97 return MaskedColor::Mul(src, value);
99 return MaskedColor::Mul(MaskedColor::Invert(src), value);
101 return MaskedColor::Mul(MaskedColor::ExtractAlpha(src), value);
103 return MaskedColor::Mul(MaskedColor::ExtractInverseAlpha(src), value);
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DSparcISelDAGToDAG.cpp175 SDNode *Mul = CurDAG->getMachineNode(Opcode, dl, MVT::i32, MVT::Glue, local
178 return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDValue(Mul, 1));
/external/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp49 SDNode *Mul = CurDAG->getMachineNode(Opc, DL, MVT::Glue, N->getOperand(0), local
51 SDValue InFlag = SDValue(Mul, 0);
229 /// Mul with two results
/external/llvm/lib/Target/Sparc/
H A DSparcISelDAGToDAG.cpp372 SDNode *Mul = local
374 SDValue ResultHigh = SDValue(Mul, 1);
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsISelDAGToDAG.cpp240 /// Mul with two results
251 SDNode *Mul = CurDAG->getMachineNode(Op, dl, MVT::Glue, Op1, Op2); local
253 SDValue InFlag = SDValue(Mul, 0);
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dvector_support_library.h50 llvm::Value* Mul(llvm::Value* lhs, llvm::Value* rhs);
51 llvm::Value* Mul(int64 lhs, llvm::Value* rhs) { function in class:xla::cpu::VectorSupportLibrary
52 return Mul(ir_builder()->getInt64(lhs), rhs);
54 llvm::Value* Mul(const llvm::APFloat& lhs, llvm::Value* rhs) { function in class:xla::cpu::VectorSupportLibrary
55 return Mul(GetConstantFloat(rhs->getType(), lhs), rhs);
60 llvm::Value* Mul(double lhs, llvm::Value* rhs) = delete;
61 llvm::Value* Mul(float lhs, llvm::Value* rhs) = delete;
87 return Add(c, Mul(a, b));
91 return Add(GetConstantFloat(vector_type(), c), Mul(a, b));
97 Mul(
[all...]
H A Dvector_support_library.cc58 llvm::Value* VectorSupportLibrary::Mul(llvm::Value* lhs, llvm::Value* rhs) { function in class:xla::cpu::VectorSupportLibrary
/external/tensorflow/tensorflow/contrib/lite/toco/tflite/
H A Doperator.cc421 class Mul : public BuiltinOperator<MulOperator, ::tflite::MulOptions, class in namespace:toco::tflite
804 ops.emplace_back(new Mul(::tflite::BuiltinOperator_MUL, OperatorType::kMul));
/external/gemmlowp/fixedpoint/
H A Dfixedpoint_sse.h105 inline __m128i Mul(__m128i a, __m128i b) { function in namespace:gemmlowp
110 inline int16x8_m128i Mul(int16x8_m128i a, int16x8_m128i b) { function in namespace:gemmlowp
H A Dfixedpoint.h97 tIntegerType Mul(tIntegerType a, tIntegerType b) { function in namespace:gemmlowp
/external/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp87 Mul, // (B + i) * S enumerator in enum:__anon14774::StraightLineStrengthReduce::Candidate::Kind
166 // Allocate candidates and find bases for Mul instructions.
281 if (C.CandidateKind == Candidate::Mul) {
342 case Instruction::Mul:
403 allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(B), Idx, RHS, I);
409 allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(B), Idx, RHS, I);
413 allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(LHS), Zero, RHS,
609 case Candidate::Mul:
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp65 BinaryOperator *Mul = BinaryOperator::Create(Instruction::Mul, V, V); local
69 BinaryOperator *MulClone = this->clone(Mul);
82 Mul->setHasNoUnsignedWrap();
86 MulClone = this->clone(Mul);
99 Mul->setHasNoSignedWrap();
103 MulClone = this->clone(Mul);
116 Mul->setHasNoUnsignedWrap(false);
120 MulClone = this->clone(Mul);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DReassociate.cpp283 if (I->getOpcode() == Instruction::Mul) {
524 if (isReassociableOp(Shl->getOperand(0), Instruction::Mul) ||
526 (isReassociableOp(Shl->use_back(), Instruction::Mul) ||
531 Instruction *Mul = local
534 Mul->takeName(Shl);
535 Shl->replaceAllUsesWith(Mul);
536 Mul->setDebugLoc(Shl->getDebugLoc());
538 return Mul;
575 BinaryOperator *BO = isReassociableOp(V, Instruction::Mul);
636 BO->getOpcode() != Instruction::Mul) {
[all...]
/external/libchrome/crypto/
H A Dp224.cc169 // Mul computes *out = a*b
173 void Mul(FieldElement* out, const FieldElement& a, const FieldElement& b) { function in namespace:__anon11100
249 Mul(&f1, f1, in); // 2**2 - 1
251 Mul(&f1, f1, in); // 2**3 - 1
255 Mul(&f1, f1, f2); // 2**6 - 1
260 Mul(&f2, f2, f1); // 2**12 - 1
265 Mul(&f2, f3, f2); // 2**24 - 1
270 Mul(&f3, f3, f2); // 2**48 - 1
275 Mul(&f3, f3, f4); // 2**96 - 1
280 Mul(
[all...]
/external/libmojo/third_party/jinja2/
H A Dnodes.py726 class Mul(BinExpr): class in inherits:BinExpr
/external/llvm/include/llvm/MC/
H A DMCExpr.h401 Mul, ///< Multiplication. enumerator in enum:llvm::MCBinaryExpr::Opcode
470 return create(Mul, LHS, RHS, Ctx);
/external/python/cpython2/Lib/compiler/
H A Dast.py968 class Mul(Node): class in inherits:Node
981 return "Mul((%s, %s))" % (repr(self.left), repr(self.right))

Completed in 797 milliseconds

123