Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp319 unsigned Leftover = Range % uint32_t(IncValue); in handleFloatingPointIV() local
325 Leftover != 0) in handleFloatingPointIV()
330 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue) in handleFloatingPointIV()
345 unsigned Leftover = Range % uint32_t(-IncValue); in handleFloatingPointIV() local
351 Leftover != 0) in handleFloatingPointIV()
356 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue) in handleFloatingPointIV()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1617 Value *Leftover = Result->getIndVar(); in collapseLoops() local
1623 Value *NewIndVar = Builder.CreateURem(Leftover, OrigTripCount); in collapseLoops()
1626 Leftover = Builder.CreateUDiv(Leftover, OrigTripCount); in collapseLoops()
1629 NewIndVars[0] = Leftover; in collapseLoops()