OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CreateLShr
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRBuilder.h
1300
Value *
CreateLShr
(Value *LHS, Value *RHS, const Twine &Name = "",
1304
return Insert(Folder.
CreateLShr
(LC, RC, isExact), Name);
1306
return Insert(BinaryOperator::
CreateLShr
(LHS, RHS), Name);
1310
Value *
CreateLShr
(Value *LHS, const APInt &RHS, const Twine &Name = "",
1312
return
CreateLShr
(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
1315
Value *
CreateLShr
(Value *LHS, uint64_t RHS, const Twine &Name = "",
1317
return
CreateLShr
(LHS, ConstantInt::get(LHS->getType(), RHS), Name,isExact);
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go
1544
func (b Builder)
CreateLShr
(lhs, rhs Value, name string) (v Value) {
Completed in 19 milliseconds
Indexes created Sun Jun 07 00:24:08 UTC 2026