Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolution.cpp5219 APInt NegB(-B); in SolveQuadraticEquation() local
5229 ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA)); in SolveQuadraticEquation()
5231 ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA)); in SolveQuadraticEquation()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7017 APInt NegB(-B); in SolveQuadraticEquation() local
7025 ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA)); in SolveQuadraticEquation()
7027 ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA)); in SolveQuadraticEquation()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DScalarEvolution.cpp8395 APInt NegB = -std::move(B); in SolveQuadraticEquation() local
8404 ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA)); in SolveQuadraticEquation()
8406 ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA)); in SolveQuadraticEquation()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp30215 bool NegB = (B.getOpcode() == ISD::FNEG); in combineFMA() local
30219 bool NegMul = (NegA != NegB); in combineFMA()
30222 if (NegB) in combineFMA()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp37945 bool NegB = invertIfNegative(B); in combineFMA() local
37948 if (!NegA && !NegB && !NegC) in combineFMA()
37951 unsigned NewOpcode = negateFMAOpcode(N->getOpcode(), NegA != NegB, NegC); in combineFMA()