Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:amount

1609   llvm::Value *Amount =
1614 return Builder.CreateAdd(InVal, Amount, Name);
1617 return Builder.CreateNSWAdd(InVal, Amount, Name);
1634 int amount = (isInc ? 1 : -1);
1708 llvm::Value *amt = llvm::ConstantInt::get(value->getType(), amount, true);
1728 llvm::Value *amt = Builder.getInt32(amount);
1739 llvm::Value *amt = Builder.getInt32(amount);
1749 llvm::Value *amt = llvm::ConstantInt::get(value->getType(), amount);
1755 llvm::ConstantFP::get(value->getType(), amount),
1778 llvm::APFloat(static_cast<float>(amount)));
1781 llvm::APFloat(static_cast<double>(amount)));
1784 llvm::APFloat F(static_cast<float>(amount));
2485 // GNU void* casts amount to no-ops since our void* type is i8*, but this is