/third_party/curl/tests/data/ |
D | test1060 | 23 And you should ignore this data. aaaaaaaaaaaaaaaa 24 And you should ignore this data. aaaaaaaaaaaaaaaa 25 And you should ignore this data. aaaaaaaaaaaaaaaa 26 And you should ignore this data. aaaaaaaaaaaaaaaa 27 And you should ignore this data. aaaaaaaaaaaaaaaa 28 And you should ignore this data. aaaaaaaaaaaaaaaa 29 And you should ignore this data. aaaaaaaaaaaaaaaa 30 And you should ignore this data. aaaaaaaaaaaaaaaa 31 And you should ignore this data. aaaaaaaaaaaaaaaa 32 And you should ignore this data. aaaaaaaaaaaaaaaa [all …]
|
D | test1061 | 25 And you should ignore this data. aaaaaaaaaaaaaaaa 26 And you should ignore this data. aaaaaaaaaaaaaaaa 27 And you should ignore this data. aaaaaaaaaaaaaaaa 28 And you should ignore this data. aaaaaaaaaaaaaaaa 29 And you should ignore this data. aaaaaaaaaaaaaaaa 30 And you should ignore this data. aaaaaaaaaaaaaaaa 31 And you should ignore this data. aaaaaaaaaaaaaaaa 32 And you should ignore this data. aaaaaaaaaaaaaaaa 33 And you should ignore this data. aaaaaaaaaaaaaaaa 34 And you should ignore this data. aaaaaaaaaaaaaaaa [all …]
|
D | test1147 | 44 And A Funny One : wohoo 63 And A Funny One : wohoo
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIOptimizeExecMaskingPreRA.cpp | 208 auto *And = TRI->findReachingDef(CondReg, AMDGPU::NoSubRegister, in optimizeVcndVcmpPair() local 210 if (!And || And->getOpcode() != AndOpc || in optimizeVcndVcmpPair() 211 !And->getOperand(1).isReg() || !And->getOperand(2).isReg()) in optimizeVcndVcmpPair() 214 MachineOperand *AndCC = &And->getOperand(1); in optimizeVcndVcmpPair() 218 AndCC = &And->getOperand(2); in optimizeVcndVcmpPair() 221 } else if (And->getOperand(2).getReg() != ExecReg) { in optimizeVcndVcmpPair() 225 auto *Cmp = TRI->findReachingDef(CmpReg, CmpSubReg, *And, MRI, LIS); in optimizeVcndVcmpPair() 228 Cmp->getParent() != And->getParent()) in optimizeVcndVcmpPair() 255 << *And); in optimizeVcndVcmpPair() 258 LIS->RemoveMachineInstrFromMaps(*And); in optimizeVcndVcmpPair() [all …]
|
D | SILowerControlFlow.cpp | 225 MachineInstr *And = in emitIf() local 230 setImpSCCDefDead(*And, true); in emitIf() 261 LIS->ReplaceMachineInstrInMaps(MI, *And); in emitIf() 311 MachineInstr *And = in emitElse() local 317 LIS->InsertMachineInstrInMaps(*And); in emitElse() 373 MachineInstr *And = nullptr, *Or = nullptr; in emitIfBreak() local 376 And = BuildMI(MBB, &MI, DL, TII->get(AndOpc), AndReg) in emitIfBreak() 390 if (And) in emitIfBreak() 391 LIS->InsertMachineInstrInMaps(*And); in emitIfBreak()
|
D | AMDGPUAtomicOptimizer.cpp | 124 case AtomicRMWInst::And: in visitAtomicRMWInst() 181 Op = AtomicRMWInst::And; in visitIntrinsicInst() 257 case AtomicRMWInst::And: in buildNonAtomicBinOp() 258 return B.CreateBinOp(Instruction::And, LHS, RHS); in buildNonAtomicBinOp() 397 case AtomicRMWInst::And: in getIdentityValueForAtomicOp() 531 case AtomicRMWInst::And: in optimizeAtomic() 628 case AtomicRMWInst::And: in optimizeAtomic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | GuardUtils.cpp | 87 auto *And = dyn_cast<Instruction>(Cond); in parseWidenableBranch() local 88 if (!And) in parseWidenableBranch() 94 WC = &And->getOperandUse(0); in parseWidenableBranch() 95 C = &And->getOperandUse(1); in parseWidenableBranch() 101 WC = &And->getOperandUse(1); in parseWidenableBranch() 102 C = &And->getOperandUse(0); in parseWidenableBranch()
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | 2drvb10.txt | 481 1:3. And he shall be like a tree which is planted near the running 482 waters, which shall bring forth its fruit, in due season. And his leaf 529 2:10. And now, O ye kings, understand: receive instruction, you that 663 for ever, and thou shalt dwell in them. And all they that love thy name 694 6:4. And my soul is troubled exceedingly: but thou, O Lord, how long? 746 of my enemies. And arise, O Lord, my God, in the precept which thou 749 7:8. And a congregation of people shall surround thee. And for their 765 7:14. And in it he hath prepared to instruments of death, he hath made 812 8:7. And hast set him over the works of thy hands. 858 9:9. And he shall judge the world in equity, he shall judge the people [all …]
|
/third_party/flutter/skia/third_party/externals/wuffs/test/data/ |
D | midsummer.txt | 17 And then the moon, like to a silver bow 29 And won thy love, doing thee injuries; 46 And interchanged love-tokens with my child: 49 And stolen the impression of her fantasy 126 And what is mine my love shall render him. 127 And she is mine, and all my right of her 134 And, which is more than all these boasts can be, 139 And won her soul; and she, sweet lady, dotes, 144 And with Demetrius thought to have spoke thereof; 147 And come, Egeus; you shall go with me, [all …]
|
D | midsummer.txt.gz |
|
D | romeo.txt | 8 And I'll no longer be a Capulet. 24 And for that name which is no part of thee
|
/third_party/typescript/tests/cases/conformance/types/conditional/ |
D | conditionalTypes1.ts | 174 type And<A extends boolean, B extends boolean> = If<A, B, false>; alias 188 type A1 = And<false, false>; // false 189 type A2 = And<false, true>; // false 190 type A3 = And<true, false>; // false 191 type A4 = And<true, true>; // true 192 type A5 = And<boolean, false>; // false 193 type A6 = And<false, boolean>; // false 194 type A7 = And<boolean, true>; // boolean 195 type A8 = And<true, boolean>; // boolean 196 type A9 = And<boolean, boolean>; // boolean
|
/third_party/harfbuzz/perf/texts/ |
D | en-thelittleprince.txt | 28 pondered deeply, then, over the adventures of the jungle. And after some work with a coloured 59 them intimately, close at hand. And that hasn’t much improved my opinion of them. 66 neckties. And the grown-up would be greatly pleased to have met such a sensible man. 69 plane in the Desert of Sahara, six years ago. Something was broken in my engine. And as I had 88 around me. And I saw a most extraordinary small person, who stood there examining me with 98 And yet my little man seemed neither to be straying uncertainly among the sands, nor to be 102 When at last I was able to speak, I said to him: “But, what are you doing here?” And in answer he 117 was that of the boa constrictor from the outside. And I was astounded to hear the little fellow 136 So I tossed off this drawing. And I threw out an explanation with it. 158 And that is how I made the acquaintance of the little prince. [all …]
|
/third_party/skia/third_party/externals/harfbuzz/perf/texts/ |
D | en-thelittleprince.txt | 28 pondered deeply, then, over the adventures of the jungle. And after some work with a coloured 59 them intimately, close at hand. And that hasn’t much improved my opinion of them. 66 neckties. And the grown-up would be greatly pleased to have met such a sensible man. 69 plane in the Desert of Sahara, six years ago. Something was broken in my engine. And as I had 88 around me. And I saw a most extraordinary small person, who stood there examining me with 98 And yet my little man seemed neither to be straying uncertainly among the sands, nor to be 102 When at last I was able to speak, I said to him: “But, what are you doing here?” And in answer he 117 was that of the boa constrictor from the outside. And I was astounded to hear the little fellow 136 So I tossed off this drawing. And I threw out an explanation with it. 158 And that is how I made the acquaintance of the little prince. [all …]
|
/third_party/skia/third_party/externals/brotli/tests/testdata/ |
D | plrabn12.txt | 87 And chiefly thou, O Spirit, that dost prefer 92 And mad'st it pregnant: what in me is dark 96 And justify the ways of God to men. 136 And rest can never dwell, hope never comes 152 And thence in Heaven called Satan, with bold words 159 And hazard in the glorious enterprise 168 And high disdain from sense of injured merit, 170 And to the fierce contentions brought along 175 And shook his throne. What though the field be lost? 177 And study of revenge, immortal hate, [all …]
|
D | asyoulik.txt | 175 OLIVER And what wilt thou do? beg, when that is spent? 268 as his finger. And thou wert best look to't; for if 575 CELIA And mine, to eke out hers. 638 And all the world was of my father's mind: 698 And here detain'd by her usurping uncle, 705 And pity her for her good father's sake; 706 And, on my life, his malice 'gainst the lady 791 And get you from our court. 838 And wheresoever we went, like Juno's swans, 845 And thou wilt show more bright and seem more virtuous [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | conditionalTypes1.js | 172 type And<A extends boolean, B extends boolean> = If<A, B, false>; 186 type A1 = And<false, false>; // false 187 type A2 = And<false, true>; // false 188 type A3 = And<true, false>; // false 189 type A4 = And<true, true>; // true 190 type A5 = And<boolean, false>; // false 191 type A6 = And<false, boolean>; // false 192 type A7 = And<boolean, true>; // boolean 193 type A8 = And<true, boolean>; // boolean 194 type A9 = And<boolean, boolean>; // boolean [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | MIPatternMatch.h | 72 template <typename... Preds> struct And { struct 80 struct And<Pred, Preds...> : And<Preds...> { argument 82 And(Pred &&p, Preds &&... preds) 83 : And<Preds...>(std::forward<Preds>(preds)...), P(std::forward<Pred>(p)) { 87 return P.match(MRI, src) && And<Preds...>::match(MRI, src); 109 template <typename... Preds> And<Preds...> m_all_of(Preds &&... preds) { 110 return And<Preds...>(std::forward<Preds>(preds)...);
|
/third_party/pcre2/pcre2/testdata/ |
D | grepinput8 | 11 And so on and so on 12 And so on and so on
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonPatternsHVX.td | 285 def: OpR_RR_pat<V6_vand, And, VecI8, HVI8>; 286 def: OpR_RR_pat<V6_vand, And, VecI16, HVI16>; 287 def: OpR_RR_pat<V6_vand, And, VecI32, HVI32>; 445 def: OpR_RR_pat<V6_pred_and, And, VecQ8, HQ8>; 446 def: OpR_RR_pat<V6_pred_and, And, VecQ16, HQ16>; 447 def: OpR_RR_pat<V6_pred_and, And, VecQ32, HQ32>; 455 def: OpR_RR_pat<V6_pred_and_n, Not2<And>, VecQ8, HQ8>; 456 def: OpR_RR_pat<V6_pred_and_n, Not2<And>, VecQ16, HQ16>; 457 def: OpR_RR_pat<V6_pred_and_n, Not2<And>, VecQ32, HQ32>; 472 def: AccRRR_pat<V6_veqb_and, And, seteq, HQ8, HVI8, HVI8>; [all …]
|
/third_party/boost/boost/hana/ |
D | and.hpp | 27 using And = BOOST_HANA_DISPATCH_IF(and_impl<Bool>, in operator ()() typedef 36 return And::apply(static_cast<X&&>(x), static_cast<Y&&>(y)); in operator ()()
|
/third_party/boost/libs/hana/include/boost/hana/ |
D | and.hpp | 27 using And = BOOST_HANA_DISPATCH_IF(and_impl<Bool>, in operator ()() typedef 36 return And::apply(static_cast<X&&>(x), static_cast<Y&&>(y)); in operator ()()
|
/third_party/flutter/skia/third_party/externals/wuffs/lib/interval/ |
D | interval.go | 556 func (x IntRange) And(y IntRange) (z IntRange, ok bool) { func 765 j.And(j, x[1]) 785 j.And(j, y[1]) 805 k.And(k, y[1]) 825 k.And(k, x[1]) 854 i.And(x[1], y[1]) 888 j.And(j, x[1]) 889 j.And(j, y[1])
|
/third_party/boost/libs/python/src/ |
D | object_operators.cpp | 51 BOOST_PYTHON_BINARY_OPERATOR(&, And) 76 BOOST_PYTHON_INPLACE_OPERATOR(&, And)
|
/third_party/re2/re2/ |
D | prefilter.cc | 135 Prefilter* Prefilter::And(Prefilter* a, Prefilter* b) { in And() function in re2::Prefilter 211 static Info* And(Info* a, Info* b); 326 Prefilter::Info* Prefilter::Info::And(Info* a, Info* b) { in And() function in re2::Prefilter::Info 334 ab->match_ = Prefilter::And(a->TakeMatch(), b->TakeMatch()); in And() 591 info = And(info, exact); in PostVisit() 594 info = And(info, ci); in PostVisit() 600 info = And(info, exact); in PostVisit()
|