Home
last modified time | relevance | path

Searched refs:And (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/NextBSD/usr.bin/fortune/datfiles/
HDlimerick7 And the worst of it was that it did!
12 And, unless I'm quite wrong,
19 And covered his pants leg with pee.
61 And died of constriction
67 And then by six men,
69 And the band at the Waldorf-Astoria.
75 And thus circumcised his old skipper.
124 And some intimate glands,
125 And was soft as a little duck's fluff.
131 And bathed every Friday in brine.
[all …]
HDstartrek20 -- Spock and McCoy, "And The Children Shall Lead",
30 "And make them spend it on life."
36 "That's true. But an idea can't be seen or felt. And that's
63 "And in the way our differences combine to create meaning and
160 But it's real. And if it's real it can be affected ... we may not be
174 man. And nothing can replace it or him.
194 sounds of the sea beneath you. And even if you take away the wind and
270 they see it is easier than trading. And it has its pleasures. I feel
393 -- Kirk, "And The Children Shall Lead", stardate 5029.5
594 Uncontrolled power will turn even saints into savages. And we can all
[all …]
/NextBSD/tools/regression/geom_uzip/etalon/
HDetalon.txt13 And the mome raths outgrabe.
23 And stood awhile in thought.
25 And, as in uffish thought he stood,
28 And burbled as it came!
30 One, two! One, two! And through and through
35 "And, has thou slain the Jabberwock?
43 And the mome raths outgrabe.
/NextBSD/contrib/llvm/tools/clang/lib/Analysis/
HDThreadSafetyLogical.cpp45 case LExpr::And: in implies()
50 return RNeg ? RightOrOperator(cast<And>(RHS)) in implies()
51 : RightAndOperator(cast<And>(RHS)); in implies()
70 case LExpr::And: in implies()
75 return LNeg ? LeftAndOperator(cast<And>(LHS)) in implies()
76 : LeftOrOperator(cast<And>(LHS)); in implies()
/NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
HDThreadSafetyLogical.h26 And, enumerator
69 class And : public BinOp {
71 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {} in And() function
73 static bool classof(const LExpr *E) { return E->kind() == LExpr::And; } in classof()
/NextBSD/contrib/file/magic/Magdir/
HDxilinx21 # And then 'b'
35 # And length of data
HDsccs16 # *Sigh*. And these both came from various parts of the USG.
/NextBSD/contrib/ofed/management/opensm/doc/
HDopensm-coding-style.txt6 general. And in this way to make OpenSM more developer friendly and to
22 global names, please no confused Hungary style, short functions. And of
/NextBSD/contrib/llvm/lib/IR/
HDInstruction.cpp215 case And: return "and"; in getOpcodeName()
474 return Opcode == And || Opcode == Or || Opcode == Xor || in isAssociative()
505 case And: in isCommutative()
521 return Opcode == And || Opcode == Or; in isIdempotent()
/NextBSD/contrib/libstdc++/
DChangeLog-199938 * config/irix/bits/ctype_base.h: And here.
42 * config/aix/bits/ctype_base.h: And here.
55 * bits/std_fstream.h (sync): And here.
109 * config/default/ctype.cc: And here.
110 * config/defaults/bits/ctype_base.h: And here.
111 * config/linux/ctype.cc: And here.
112 * config/linux/bits/ctype_base.h (ctype_base): And here.
116 * config/solaris/ctype.cc: And here.
277 * bits/localefwd.h: And here.
312 * src/misc-inst.cc: And here.
[all …]
DChangeLog-200010 * acinclude.m4 (GLIBCPP_EXPORT_INCLUDES): And here.
18 * src/strstream.cc: And here.
40 * src/localename: And here.
132 (OPT_LDFLAGS): And here.
476 And here.
499 * include/bits/localefwd.h (codecvt_byname): And here.
536 * acinclude.m4 (EXTRA_CXX_FLAGS): And here.
1190 (codecvt::do_in): And here.
1400 * include/c/bits/std_ctime.h: And here.
1411 * include/c/bits/std_cstddef.h: And here.
[all …]
/NextBSD/contrib/apr/include/
HDapr.h.in25 * And please, make an effort to stub apr.hw and apr.hnw in the process.
535 /* And APR_SIZE_T_FMT */
538 /* And APR_OFF_T_FMT */
541 /* And APR_PID_T_FMT */
544 /* And APR_INT64_T_FMT */
547 /* And APR_UINT64_T_FMT */
550 /* And APR_UINT64_T_HEX_FMT */
/NextBSD/tools/regression/redzone9/
HDREADME10 And look at the logs/console output.
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDOperatorPrecedence.h36 And = 8, // & enumerator
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineShifts.cpp110 case Instruction::And: in CanEvaluateShifted()
208 case Instruction::And: in GetShiftedValue()
404 Value *And = Builder->CreateAnd(NSh, in FoldShiftByConstant() local
409 return new TruncInst(And, I.getType()); in FoldShiftByConstant()
421 case Instruction::And: in FoldShiftByConstant()
513 case Instruction::And: in FoldShiftByConstant()
HDInstCombineAndOrXor.cpp115 if (Op != Instruction::And && Op != Instruction::Or && in SimplifyBSwap()
146 if (Op == Instruction::And) in SimplifyBSwap()
174 Value *And = Builder->CreateAnd(X, AndRHS); in OptAndOp() local
175 And->takeName(Op); in OptAndOp()
176 return BinaryOperator::CreateXor(And, Together); in OptAndOp()
194 Value *And = Builder->CreateAnd(X, Together); in OptAndOp() local
195 And->takeName(Op); in OptAndOp()
196 return BinaryOperator::CreateOr(And, OpRHS); in OptAndOp()
381 case Instruction::And: in FoldLogicalPlusAnd()
1576 if (I->getOpcode() == Instruction::And && in CollectBSwapParts()
[all …]
HDInstCombineCasts.cpp178 case Instruction::And: in EvaluateInDifferentType()
358 case Instruction::And: in CanEvaluateTruncated()
682 case Instruction::And: in CanEvaluateZExtd()
698 (Opc == Instruction::And || Opc == Instruction::Or || in CanEvaluateZExtd()
836 Value *And = Builder->CreateAnd(A, AndConst, CSrc->getName()+".mask"); in visitZExt() local
837 return new ZExtInst(And, CI.getType()); in visitZExt()
881 Value *And; in visitZExt() local
882 if (SrcI && match(SrcI, m_OneUse(m_Xor(m_Value(And), m_Constant(C)))) && in visitZExt()
883 match(And, m_OneUse(m_And(m_Trunc(m_Value(X)), m_Specific(C)))) && in visitZExt()
1019 case Instruction::And: in CanEvaluateSExtd()
HDInstCombineSimplifyDemanded.cpp159 if (I->getOpcode() == Instruction::And) { in SimplifyDemandedUseBits()
241 case Instruction::And: in SimplifyDemandedUseBits()
369 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC); in SimplifyDemandedUseBits() local
370 return InsertNewInstWith(And, *I); in SimplifyDemandedUseBits()
384 if (LHSInst->getOpcode() == Instruction::And && LHSInst->hasOneUse() && in SimplifyDemandedUseBits()
1146 case Instruction::And: in SimplifyDemandedVectorElts()
/NextBSD/contrib/gcc/
HDFREEBSD-upgrade11 use ``cvs add''. And please remember to adjust the contents of
/NextBSD/contrib/binutils/binutils/
HDChangeLog-00011725 (main): And here.
1741 (disassemble_data): And here.
1742 (read_section_stabs): And here.
1743 (read_section_stabs): And here.
1744 (dump_bfd): And here.
1745 (main): And here.
1751 (parse_coff_enum_type): And here.
1752 (parse_coff): And here.
1753 * rddbg.c (read_debugging_info): And here.
1754 * size.c (main): And here.
[all …]
/NextBSD/contrib/llvm/lib/Target/WebAssembly/
HDWebAssemblyInstrAtomics.td47 // And clear exclusive.
/NextBSD/contrib/llvm/tools/clang/lib/Basic/
HDOperatorPrecedence.cpp59 case tok::amp: return prec::And; in getBinOpPrecedence()
/NextBSD/tools/tools/sysbuild/
HDREADME71 And we should be ready to try a shot:
82 And come up with your newly built system.
/NextBSD/contrib/llvm/lib/Target/SystemZ/
HDSystemZInstrInfo.cpp724 if (LogicOp And = interpretAndImmediate(Opcode)) { in convertToThreeAddress() local
725 uint64_t Imm = MI->getOperand(2).getImm() << And.ImmLSB; in convertToThreeAddress()
727 Imm |= allOnes(And.RegSize) & ~(allOnes(And.ImmSize) << And.ImmLSB); in convertToThreeAddress()
729 if (isRxSBGMask(Imm, And.RegSize, Start, End)) { in convertToThreeAddress()
731 if (And.RegSize == 64) { in convertToThreeAddress()
/NextBSD/contrib/binutils/bfd/
HDTODO7 to carry along all the unneeded baggage for reading objects. And

12345678910>>...15