HomeSort by relevance Sort by last modified time
    Searched refs:StartValue (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 87 : StartValue(nullptr), LoopExitInstr(nullptr), Kind(RK_NoRecurrence),
94 : StartValue(Start), LoopExitInstr(Exit), Kind(K), MinMaxKind(MK),
179 TrackingVH<Value> getRecurrenceStartValue() { return StartValue; }
231 TrackingVH<Value> StartValue;
261 : StartValue(nullptr), IK(IK_NoInduction), StepValue(nullptr) {}
269 /// Compute the transformed value of Index at offset StartValue using step
271 /// For integer induction, returns StartValue + Index * StepValue.
272 /// For pointer induction, returns StartValue[Index * StepValue].
277 Value *getStartValue() const { return StartValue; }
289 TrackingVH<Value> StartValue;
    [all...]
  /external/llvm/lib/Transforms/Utils/
LoopUtils.cpp 616 : StartValue(Start), IK(K), StepValue(Step) {
618 assert(StartValue && "StartValue is null");
620 assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) &&
621 "StartValue is not a pointer for pointer induction");
622 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) &&
623 "StartValue is not an integer for integer induction");
637 assert(Index->getType() == StartValue->getType() &&
638 "Index type does not match StartValue type");
640 return B.CreateSub(StartValue, Index)
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winioctl.h 817 LARGE_INTEGER StartValue;
    [all...]

Completed in 861 milliseconds