Home
last modified time | relevance | path

Searched refs:StepC (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolution.cpp5314 const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step); in HowFarToZero() local
5315 if (StepC == 0) in HowFarToZero()
5323 bool CountDown = StepC->getValue()->getValue().isNegative(); in HowFarToZero()
5329 if (StepC->getValue()->equalsInt(1) || StepC->getValue()->isAllOnesValue()) { in HowFarToZero()
5359 return SolveLinEquationWithOverflow(StepC->getValue()->getValue(), in HowFarToZero()
/external/llvm/lib/Analysis/
DScalarEvolution.cpp7109 const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step); in howFarToZero() local
7110 if (!StepC || StepC->getValue()->equalsInt(0)) in howFarToZero()
7118 bool CountDown = StepC->getAPInt().isNegative(); in howFarToZero()
7124 if (StepC->getValue()->equalsInt(1) || StepC->getValue()->isAllOnesValue()) { in howFarToZero()
7143 const APInt &StepV = StepC->getAPInt(); in howFarToZero()
7209 StepC->getValue()->getValue(), -StartC->getValue()->getValue(), *this); in howFarToZero()