HomeSort by: relevance | last modified time | path
    Searched defs:CreateAShr (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRBuilder.h 1320 Value *CreateAShr(Value *LHS, Value *RHS, const Twine &Name = "",
1324 return Insert(Folder.CreateAShr(LC, RC, isExact), Name);
1326 return Insert(BinaryOperator::CreateAShr(LHS, RHS), Name);
1330 Value *CreateAShr(Value *LHS, const APInt &RHS, const Twine &Name = "",
1332 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
1335 Value *CreateAShr(Value *LHS, uint64_t RHS, const Twine &Name = "",
1337 return CreateAShr(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 1550 func (b Builder) CreateAShr(lhs, rhs Value, name string) (v Value) {

Completed in 36 milliseconds