OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
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
Indexes created Tue Feb 24 08:35:24 UTC 2026