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

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/test/fixedbugs/bug466.dir/
a.go 13 func Mul(z complex128) complex128 {
  /prebuilts/go/linux-x86/test/fixedbugs/bug466.dir/
a.go 13 func Mul(z complex128) complex128 {
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Mul.java 14 public class Mul implements IExpression {
20 public Mul(final IExpression l, final IExpression r) {
  /art/test/411-optimizing-arith-mul/src/
Main.java 76 mul(); method
79 public static void mul() { method in class:Main
87 expectEquals(15, $opt$Mul(5, 3));
88 expectEquals(0, $opt$Mul(0, 0));
89 expectEquals(0, $opt$Mul(0, 3));
90 expectEquals(0, $opt$Mul(3, 0));
91 expectEquals(-3, $opt$Mul(1, -3));
92 expectEquals(36, $opt$Mul(-12, -3));
93 expectEquals(33, $opt$Mul(1, 3) * 11);
94 expectEquals(671088645, $opt$Mul(134217729, 5)); // (2^27 + 1) *
    [all...]
  /external/skia/src/core/
SkMath.cpp 95 size_t SkSafeMath::Mul(size_t x, size_t y) {
97 size_t prod = tmp.mul(x, y);
  /external/skqp/src/core/
SkMath.cpp 95 size_t SkSafeMath::Mul(size_t x, size_t y) {
97 size_t prod = tmp.mul(x, y);
  /art/compiler/utils/arm/
assembler_arm_vixl.h 118 void Mul(vixl32::Register rd, vixl32::Register rn, vixl32::Register rm) {
119 MacroAssembler::Mul(vixl32::DontCare, rd, rn, rm);
121 using MacroAssembler::Mul;
  /external/skia/src/gpu/
GrBlend.cpp 44 static MaskedColor Mul(const MaskedColor& a, const MaskedColor& b) {
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/
GrBlend.cpp 43 static MaskedColor Mul(const MaskedColor& a, const MaskedColor& b) {
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/gemmlowp/internal/
simd_wrappers_msa.h 107 inline Int32x4 Mul(Int32x4 a, std::int32_t b) {
simd_wrappers_neon.h 89 inline Int32x4 Mul(Int32x4 a, std::int32_t b) { return vmulq_n_s32(a, b); }
simd_wrappers_sse.h 82 inline Int32x4 Mul(Int32x4 a, std::int32_t b) {
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/swiftshader/third_party/LLVM/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 171 // FIXME: Handle mul by immediate.
175 SDNode *Mul = CurDAG->getMachineNode(Opcode, dl, MVT::i32, MVT::Glue,
178 return CurDAG->SelectNodeTo(N, SP::RDY, MVT::i32, SDValue(Mul, 1));
  /external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/
Cloning.cpp 56 BinaryOperator *Mul = BinaryOperator::Create(Instruction::Mul, V, V);
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);
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 248 // Mul sets z = x * y and returns z.
249 func (z *Int) Mul(x, y *Int) *Int {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mpfloat.go 91 func (a *Mpflt) Mul(b *Mpflt) {
96 a.Val.Mul(&a.Val, &b.Val)
107 a.Mul(&b)
mpint.go 105 func (a *Mpint) Mul(b *Mpint) {
108 Fatalf("ovf in Mpint Mul")
114 a.Val.Mul(&a.Val, &b.Val)
  /prebuilts/go/darwin-x86/src/image/
geom.go 32 // Mul returns the vector p*k.
33 func (p Point) Mul(k int) Point {
  /prebuilts/go/darwin-x86/src/math/big/
rat.go 448 return z.mul(x, y)
458 z.abs = z.abs.mul(x.abs, f)
491 // Mul sets z to the product x*y and returns z.
492 func (z *Rat) Mul(x, y *Rat) *Rat {
500 z.a.Mul(&x.a, &y.a)
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 248 // Mul sets z = x * y and returns z.
249 func (z *Int) Mul(x, y *Int) *Int {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mpfloat.go 91 func (a *Mpflt) Mul(b *Mpflt) {
96 a.Val.Mul(&a.Val, &b.Val)
107 a.Mul(&b)
mpint.go 105 func (a *Mpint) Mul(b *Mpint) {
108 Fatalf("ovf in Mpint Mul")
114 a.Val.Mul(&a.Val, &b.Val)
  /prebuilts/go/linux-x86/src/image/
geom.go 32 // Mul returns the vector p*k.
33 func (p Point) Mul(k int) Point {
  /prebuilts/go/linux-x86/src/math/big/
rat.go 448 return z.mul(x, y)
458 z.abs = z.abs.mul(x.abs, f)
491 // Mul sets z to the product x*y and returns z.
492 func (z *Rat) Mul(x, y *Rat) *Rat {
500 z.a.Mul(&x.a, &y.a)
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 42 func (t *Arith) Mul(args *Args, reply *Reply) error {
161 err = client.Call("Arith.Mul", args, reply)
163 t.Errorf("Mul: expected no error but got string %q", err.Error())
166 t.Errorf("Mul: got %d expected %d", reply.C, args.A*args.B)
172 mulCall := client.Go("Arith.Mul", args, mulReply, nil)
186 t.Errorf("Mul: expected no error but got string %q", mulCall.Error.Error())
189 t.Errorf("Mul: got %d expected %d", mulReply.C, args.A*args.B)

Completed in 475 milliseconds

1 2 3 4 5 6