Home
last modified time | relevance | path

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

12345678910>>...53

/third_party/curl/tests/data/
Dtest106125 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 …]
Dtest106023 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 …]
Dtest114744 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/Analysis/
DGuardUtils.cpp87 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIOptimizeExecMaskingPreRA.cpp208 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 …]
DSILowerControlFlow.cpp225 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()
/third_party/uboot/u-boot-2020.01/arch/x86/include/asm/acpi/
Dirqlinks.asl53 ShiftLeft(1, And(PRTA, 0x0f), IRQ0)
73 If (And(PRTA, 0x80)) {
111 ShiftLeft(1, And(PRTB, 0x0f), IRQ0)
131 If (And(PRTB, 0x80)) {
169 ShiftLeft(1, And(PRTC, 0x0f), IRQ0)
189 If (And(PRTC, 0x80)) {
227 ShiftLeft(1, And(PRTD, 0x0f), IRQ0)
247 If (And(PRTD, 0x80)) {
285 ShiftLeft(1, And(PRTE, 0x0f), IRQ0)
305 If (And(PRTE, 0x80)) {
[all …]
Ddebug.asl42 And(CLSR, 0x20, Local0)
44 And(CLSR, 0x20, Local0)
67 And(Arg0, 0x0f, Local0)
/third_party/flutter/skia/third_party/externals/wuffs/test/data/
Dmidsummer.txt17 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 …]
Dmidsummer.txt.gz1A Midsummer Night's Dream 2Act 1, Scene 1 3 4SCENE I. Athens. ...
Dromeo.txt.gz
Dromeo.txt8 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/
DconditionalTypes1.ts174 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/skia/third_party/externals/harfbuzz/perf/texts/
Den-thelittleprince.txt28 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/harfbuzz/perf/texts/
Den-thelittleprince.txt28 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/pcre2/pcre2/testdata/
Dgrepinput811 And so on and so on
12 And so on and so on
/third_party/skia/third_party/externals/brotli/tests/testdata/
Dplrabn12.txt87 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 …]
Dasyoulik.txt175 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DMIPatternMatch.h72 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/typescript/tests/baselines/reference/
DconditionalTypes1.js172 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/boost/boost/hana/
Dand.hpp27 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonPatternsHVX.td285 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/libs/python/src/
Dobject_operators.cpp51 BOOST_PYTHON_BINARY_OPERATOR(&, And)
76 BOOST_PYTHON_INPLACE_OPERATOR(&, And)
/third_party/flutter/skia/third_party/externals/wuffs/lib/interval/
Dinterval.go556 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/node/deps/npm/node_modules/opener/
DREADME.md54 …low](http://stackoverflow.com/q/1480971/3191). And I like things that work on all three. Like Node…

12345678910>>...53