HomeSort by: relevance | last modified time | path
    Searched defs:Leftover (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 319 unsigned Leftover = Range % uint32_t(IncValue);
325 Leftover != 0)
330 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
345 unsigned Leftover = Range % uint32_t(-IncValue);
351 Leftover != 0)
356 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 1606 Value *Leftover = Result->getIndVar();
1612 Value *NewIndVar = Builder.CreateURem(Leftover, OrigTripCount);
1615 Leftover = Builder.CreateUDiv(Leftover, OrigTripCount);
1618 NewIndVars[0] = Leftover;

Completed in 28 milliseconds