Searched refs:Or (Results 1 - 25 of 119) sorted by relevance

12345

/macosx-10.10/groff-38/groff/contrib/mm/
H A DNOTES7 Implementation notes. (Or how to make your own national mm)
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DBoundsChecking.cpp159 Value *Or = Builder->CreateOr(Cmp2, Cmp3); local
162 Or = Builder->CreateOr(Cmp1, Or);
164 emitBranchToTrap(Or);
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/function/
H A Dtostring-2.js106 var or = new TestFunction( "Or", "a, b", tab + "return a | b;" );
107 function Or( a, b ) { function
152 "Or.toString()",
154 simplify(Or.toString()) );
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DInstruction.cpp123 case Or : return "or";
380 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
383 return Opcode == And || Opcode == Or || Opcode == Xor ||
401 case Or:
413 /// In LLVM, the And and Or operators are idempotent.
416 return Opcode == And || Opcode == Or;
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Expressions/
H A D11.10-2.js80 Or( shiftexp, addexp ),
251 function Or( s, a ) { function
H A D11.10-1.js252 function Or( s, a ) { function
H A D11.10-3.js250 function Or( s, a ) { function
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/contrib/pngminus/
H A Dmakevms.com74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp149 case Instruction::Or:
153 Value *Or = Builder->CreateOr(X, Together); local
154 Or->takeName(Op);
155 return BinaryOperator::CreateAnd(Or, AndRHS);
375 case Instruction::Or:
1043 case Instruction::Or: {
1142 Value *Or = Builder->CreateOr(Op0NotVal, Op1NotVal, local
1144 return BinaryOperator::CreateNot(Or);
1285 if (I->getOpcode() == Instruction::Or) {
1742 Value *Or local
1752 Value *Or = Builder->CreateOr(X, RHS); local
[all...]
H A DInstCombineSimplifyDemanded.cpp176 } else if (I->getOpcode() == Instruction::Or) {
252 case Instruction::Or:
309 Instruction *Or = local
312 return InsertNewInstWith(Or, *I);
508 Instruction *Or = local
511 return InsertNewInstWith(Or, *I);
1083 case Instruction::Or:
H A DInstCombineCasts.cpp173 case Instruction::Or:
352 case Instruction::Or:
666 case Instruction::Or:
682 (Opc == Instruction::And || Opc == Instruction::Or ||
828 if (SrcI && SrcI->getOpcode() == Instruction::Or) {
838 return BinaryOperator::Create(Instruction::Or, LCast, RCast);
1007 case Instruction::Or:
1527 case Instruction::Or:
H A DInstCombineShifts.cpp109 case Instruction::Or:
204 case Instruction::Or:
412 case Instruction::Or:
486 bool isValid = true; // Valid only for And, Or, Xor
494 case Instruction::Or:
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DLowerAtomic.cpp64 case AtomicRMWInst::Or:
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddomxpath.h79 LessOrEq, Greater, GreaterOrEq, Equal, NotEqual, And, Or, enumerator in enum:__anon13039
/macosx-10.10/llvmCore-3425.0.34/include/llvm/MC/
H A DMCExpr.h329 Or, ///< Bitwise or. enumerator in enum:llvm::MCBinaryExpr::Opcode
403 return Create(Or, LHS, RHS, Ctx);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/scripts/
H A Dmakevms.com124 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/bin/
H A Dstubmaker.pl120 Or:
/macosx-10.10/vim-55/runtime/syntax/
H A Dspecman.vim3 " Maintainer: Or Freund <or@mobilian.com ;omf@gmx.co.uk; OrMeir@yahoo.com>
9 "| Thanks Or. |
/macosx-10.10/vim-55/src/
H A DMake_w16.mak58 # /Or Minimise resource alignment
62 LinkerLocalOptsAtW16_gvim16dexe =/Twe/x/l/c/C/k/Or/Oc/Oa/Oi/P=65535/V3.10
/macosx-10.10/OpenSSL098-52/src/engines/
H A Dmakeengines.com329 $! Figure Out If We Need A non-VAX Or A VAX Linker Option File.
496 $! Special Threads For OpenVMS v7.1 Or Later
513 $! Check To See If The VMS Version Is v7.1 Or Later.
518 $! We Have OpenVMS v7.1 Or Later, So Use The Special Threads.
551 $! Check To See If We Have VAXC Or DECC.
/macosx-10.10/llvmCore-3425.0.34/lib/MC/
H A DMCExpr.cpp119 case MCBinaryExpr::Or: OS << '|'; break;
581 case MCBinaryExpr::Or: Result = LHS | RHS; break;
/macosx-10.10/vim-55/runtime/macros/
H A Deditexisting.vim6 " $VIM/vimfiles/plugin directory. Or make a symbolic link, so that you
/macosx-10.10/llvmCore-3425.0.34/include/llvm/ADT/
H A DAPSInt.h223 APSInt Or(const APSInt& RHS) const { function in class:llvm::APSInt
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DInstructionSimplify.cpp1378 // And distributes over Or. Try some generic simplifications based on this.
1379 if (Value *V = ExpandBinOp(Instruction::And, Op0, Op1, Instruction::Or,
1388 // Or distributes over And. Try some generic simplifications based on this.
1389 if (Value *V = FactorizeBinOp(Instruction::And, Op0, Op1, Instruction::Or,
1416 /// SimplifyOrInst - Given operands for an Or, see if we can
1423 return ConstantFoldInstOperands(Instruction::Or, CLHS->getType(),
1474 if (Value *V = SimplifyAssociativeBinOp(Instruction::Or, Op0, Op1, Q,
1478 // Or distributes over And. Try some generic simplifications based on this.
1479 if (Value *V = ExpandBinOp(Instruction::Or, Op0, Op1, Instruction::And, Q,
1483 // And distributes over Or
[all...]
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DCatalyst.pm252 Or want to log a request's IP address with every log statement? No problem

Completed in 425 milliseconds

12345