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

  /external/llvm/include/llvm/Support/
ConstantFolder.h 87 Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
NoFolder.h 137 Instruction *CreateAnd(Constant *LHS, Constant *RHS) const {
138 return BinaryOperator::CreateAnd(LHS, RHS);
TargetFolder.h 99 Constant *CreateAnd(Constant *LHS, Constant *RHS) const {
  /external/llvm/include/llvm/IR/
IRBuilder.h 747 Value *CreateAnd(Value *LHS, Value *RHS, const Twine &Name = "") {
752 return Insert(Folder.CreateAnd(LC, RC), Name);
754 return Insert(BinaryOperator::CreateAnd(LHS, RHS), Name);
756 Value *CreateAnd(Value *LHS, const APInt &RHS, const Twine &Name = "") {
757 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
759 Value *CreateAnd(Value *LHS, uint64_t RHS, const Twine &Name = "") {
760 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 400 static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS,

Completed in 643 milliseconds