Searched refs:mul2 (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dsmi-mul.js46 function mul2(a, b) { function
50 mul2(-1, 2);
51 mul2(-1, 2);
52 %OptimizeFunctionOnNextCall(mul2);
61 assertEquals(two_31, mul2(-two_31, -1));
62 assertUnoptimized(mul2);
65 assertEquals(two_30, mul2(-two_30, -1));
66 assertUnoptimized(mul2);
/external/eigen/Eigen/src/Geometry/arch/
H A DGeometry_SSE.h49 __m128 mul2=_mm_mul_ps(vec4f_swizzle1(a,2,0,1,3),vec4f_swizzle1(b,1,2,0,3)); local
51 pstore(&res.x(),_mm_sub_ps(mul1,mul2));
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DSincResampler.cpp277 __m128 mul2; local
291 mul2 = _mm_mul_ps(mInput, mK2); \
293 sums2 = _mm_add_ps(sums2, mul2); \
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp551 ConstantFolding::tryCollapseChainedMULs(Instruction *mul2, argument
556 Instruction *mul1 = NULL; // mul1 before mul2
561 assert(mul2->op == OP_MUL && mul2->dType == TYPE_F32);
563 if (mul2->getSrc(t)->refCount() == 1) {
564 insn = mul2->getSrc(t)->getInsn();
565 if (!mul2->src(t).mod && insn->op == OP_MUL && insn->dType == TYPE_F32)
577 mul2->def(0).replace(mul1->getDef(0), false);
583 mul2->def(0).replace(mul1->getDef(0), false);
587 mul1->saturate = mul2
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_peephole.cpp551 ConstantFolding::tryCollapseChainedMULs(Instruction *mul2, argument
556 Instruction *mul1 = NULL; // mul1 before mul2
561 assert(mul2->op == OP_MUL && mul2->dType == TYPE_F32);
563 if (mul2->getSrc(t)->refCount() == 1) {
564 insn = mul2->getSrc(t)->getInsn();
565 if (!mul2->src(t).mod && insn->op == OP_MUL && insn->dType == TYPE_F32)
577 mul2->def(0).replace(mul1->getDef(0), false);
583 mul2->def(0).replace(mul1->getDef(0), false);
587 mul1->saturate = mul2
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dd3basics.c1021 MaybeULong *mul, *mul2; local
1156 mul2 = VG_(indexXA)( results, i );
1157 tl_assert(mul2->b == True);
1158 if (mul2->ul != mul->ul) {
H A Dtytypes.c662 static MaybeULong mul_MaybeULong ( MaybeULong mul1, MaybeULong mul2 ) {
664 if (!mul2.b) { vg_assert(mul2.ul == 0); return mul2; }
665 mul1.ul *= mul2.ul;

Completed in 370 milliseconds