Home
last modified time | relevance | path

Searched refs:MulC (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/simd/
Dmatrix.h410 __m128 MulC = _mm_mul_ps(Swp2C, Swp3C); in glm_mat4_determinant_lowp() local
411 __m128 SubF = _mm_sub_ps(_mm_movehl_ps(MulC, MulC), MulC); in glm_mat4_determinant_lowp()
473 __m128 MulC = _mm_mul_ps(Swp2C, Swp3C); in glm_mat4_determinant() local
474 __m128 SubF = _mm_sub_ps(_mm_movehl_ps(MulC, MulC), MulC); in glm_mat4_determinant()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueTracking.cpp2829 if (Constant *MulC = dyn_cast<Constant>(Mul0)) { in ComputeMultiple() local
2831 MulC->getType()->getPrimitiveSizeInBits()) in ComputeMultiple()
2832 Op1C = ConstantExpr::getZExt(Op1C, MulC->getType()); in ComputeMultiple()
2834 MulC->getType()->getPrimitiveSizeInBits()) in ComputeMultiple()
2835 MulC = ConstantExpr::getZExt(MulC, Op1C->getType()); in ComputeMultiple()
2838 Multiple = ConstantExpr::getMul(MulC, Op1C); in ComputeMultiple()
2853 if (Constant *MulC = dyn_cast<Constant>(Mul1)) { in ComputeMultiple() local
2855 MulC->getType()->getPrimitiveSizeInBits()) in ComputeMultiple()
2856 Op0C = ConstantExpr::getZExt(Op0C, MulC->getType()); in ComputeMultiple()
2858 MulC->getType()->getPrimitiveSizeInBits()) in ComputeMultiple()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1943 const APInt *MulC; in foldICmpMulConstant() local
1944 if (!match(Mul->getOperand(1), m_APInt(MulC))) in foldICmpMulConstant()
1951 if (MulC->isNegative()) in foldICmpMulConstant()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp3529 APInt MulC = ConstValue1.abs(); in visitMUL() local
3530 if ((MulC - 1).isPowerOf2()) in visitMUL()
3532 else if ((MulC + 1).isPowerOf2()) in visitMUL()
3537 MathOp == ISD::ADD ? (MulC - 1).logBase2() : (MulC + 1).logBase2(); in visitMUL()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp5091 APInt MulC; in decomposeMulByConstant() local
5092 if (!ISD::isConstantSplatVector(C.getNode(), MulC)) in decomposeMulByConstant()
5112 return (MulC + 1).isPowerOf2() || (MulC - 1).isPowerOf2() || in decomposeMulByConstant()
5113 (1 - MulC).isPowerOf2() || (-(MulC + 1)).isPowerOf2(); in decomposeMulByConstant()