OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CreateOr
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
IRBuilder.h
1366
Value *
CreateOr
(Value *LHS, Value *RHS, const Twine &Name = "") {
1371
return Insert(Folder.
CreateOr
(LC, RC), Name);
1373
return Insert(BinaryOperator::
CreateOr
(LHS, RHS), Name);
1376
Value *
CreateOr
(Value *LHS, const APInt &RHS, const Twine &Name = "") {
1377
return
CreateOr
(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
1380
Value *
CreateOr
(Value *LHS, uint64_t RHS, const Twine &Name = "") {
1381
return
CreateOr
(LHS, ConstantInt::get(LHS->getType(), RHS), Name);
1384
Value *
CreateOr
(ArrayRef<Value*> Ops) {
1388
Accum =
CreateOr
(Accum, Ops[i]);
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go
1562
func (b Builder)
CreateOr
(lhs, rhs Value, name string) (v Value) {
Completed in 43 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026