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 {
IRBuilder.h 697 Value *CreateAnd(Value *LHS, Value *RHS, const Twine &Name = "") {
702 return Insert(Folder.CreateAnd(LC, RC), Name);
704 return Insert(BinaryOperator::CreateAnd(LHS, RHS), Name);
706 Value *CreateAnd(Value *LHS, const APInt &RHS, const Twine &Name = "") {
707 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
709 Value *CreateAnd(Value *LHS, uint64_t RHS, const Twine &Name = "") {
710 return CreateAnd(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
    [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 348 static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS,

Completed in 405 milliseconds