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

  /external/clang/lib/Basic/
Diagnostic.cpp 455 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
456 assert(NextVal != ArgumentEnd && "Value for integer select modifier was"
458 Argument = NextVal+1; // Skip this string.
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 651 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
653 NextVal = CGF.Builder.CreateAdd(Counter, NextVal, "inc");
654 CGF.Builder.CreateStore(NextVal, IndexVar);
    [all...]
CGExpr.cpp 751 llvm::Value *NextVal;
754 NextVal = llvm::ConstantInt::get(InVal.first->getType(), AmountVal, true);
757 NextVal = Builder.CreateAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
763 NextVal = llvm::ConstantFP::get(getLLVMContext(), FVal);
766 NextVal = Builder.CreateFAdd(InVal.first, NextVal, isInc ? "inc" : "dec");
769 ComplexPairTy IncVal(NextVal, InVal.second);
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 298 milliseconds