Home
last modified time | relevance | path

Searched refs:S0 (Results 1 - 25 of 111) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringSwitch.h107 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
109 return Case(S0, Value).Case(S1, Value); in Cases()
114 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
116 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
121 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
124 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
129 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
132 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
138 StringSwitch &Cases(const char (&S0)[N0], const char (&S1)[N1], in Cases() argument
142 return Case(S0, Valu in Cases()
148 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const T &Value) Cases() argument
158 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const char (&S7)[N7], const T &Value) Cases() argument
169 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const char (&S7)[N7], const char (&S8)[N8], const T &Value) Cases() argument
180 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const char (&S5)[N5], const char (&S6)[N6], const char (&S7)[N7], const char (&S8)[N8], const char (&S9)[N9], const T &Value) Cases() argument
218 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const T &Value) CasesLower() argument
224 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T &Value) CasesLower() argument
231 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T &Value) CasesLower() argument
238 CasesLower(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T &Value) CasesLower() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringSwitch.h88 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() argument
89 return Case(S0, Value).Case(S1, Value); in Cases()
92 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
94 return Case(S0, Value).Cases(S1, S2, Value); in Cases()
97 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
102 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
107 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument
110 return Case(S0, Valu in Cases()
113 Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, StringLiteral S3, StringLiteral S4, StringLiteral S5, StringLiteral S6, T Value) Cases() argument
119 Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, StringLiteral S3, StringLiteral S4, StringLiteral S5, StringLiteral S6, StringLiteral S7, T Value) Cases() argument
125 Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, StringLiteral S3, StringLiteral S4, StringLiteral S5, StringLiteral S6, StringLiteral S7, StringLiteral S8, T Value) Cases() argument
132 Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, StringLiteral S3, StringLiteral S4, StringLiteral S5, StringLiteral S6, StringLiteral S7, StringLiteral S8, StringLiteral S9, T Value) Cases() argument
161 CasesLower(StringLiteral S0, StringLiteral S1, T Value) CasesLower() argument
165 CasesLower(StringLiteral S0, StringLiteral S1, StringLiteral S2, T Value) CasesLower() argument
170 CasesLower(StringLiteral S0, StringLiteral S1, StringLiteral S2, StringLiteral S3, T Value) CasesLower() argument
175 CasesLower(StringLiteral S0, StringLiteral S1, StringLiteral S2, StringLiteral S3, StringLiteral S4, T Value) CasesLower() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp119 PHINode *getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1);
122 bool canSinkStoresAndGEPs(StoreInst *S0, StoreInst *S1) const;
208 /// Create a PHI node in BB for the operands of S0 and S1
210 PHINode *MergedLoadStoreMotion::getPHIOperand(BasicBlock *BB, StoreInst *S0, in getPHIOperand() argument
213 Value *Opd1 = S0->getValueOperand(); in getPHIOperand()
220 NewPN->applyMergedLocation(S0->getDebugLoc(), S1->getDebugLoc()); in getPHIOperand()
221 NewPN->addIncoming(Opd1, S0->getParent()); in getPHIOperand()
229 bool MergedLoadStoreMotion::canSinkStoresAndGEPs(StoreInst *S0, in canSinkStoresAndGEPs() argument
231 auto *A0 = dyn_cast<Instruction>(S0->getPointerOperand()); in canSinkStoresAndGEPs()
234 (A0->getParent() == S0 in canSinkStoresAndGEPs()
243 sinkStoresAndGEPs(BasicBlock *BB, StoreInst *S0, StoreInst *S1) sinkStoresAndGEPs() argument
314 auto *S0 = dyn_cast<StoreInst>(I); mergeStores() local
[all...]
/third_party/mesa3d/src/amd/addrlib/src/gfx10/
H A Dgfx10SwizzlePattern.h3757 {S0, X0, Y0, X1, Y1, X2, Y2, X3, }, // 13
3758 {0, S0, X0, Y0, X1, Y1, X2, Y2, }, // 14
3759 {0, 0, S0, X0, Y0, X1, Y1, X2, }, // 15
3760 {0, 0, 0, S0, X0, Y0, X1, Y1, }, // 16
3761 {0, 0, 0, 0, S0, X0, Y0, X1, }, // 17
3762 {S0, S1, X0, Y0, X1, Y1, X2, Y2, }, // 18
3763 {0, S0, S1, X0, Y0, X1, Y1, X2, }, // 19
3764 {0, 0, S0, S1, X0, Y0, X1, Y1, }, // 20
3765 {0, 0, 0, S0, S1, X0, Y0, X1, }, // 21
3766 {0, 0, 0, 0, S0, S
[all...]
/third_party/libabigail/tests/data/test-abicompat/
H A Dtest0-fn-changed-libapp-v0.cc10 struct S0 struct
14 S0() in S0() function
46 S0*
48 {return new S0;} in create_s0()
51 destroy(S0* s) in destroy()
63 fun0(S0&) in fun0()
H A Dtest0-fn-changed-libapp-v1.cc10 struct S0 struct
15 S0() in S0() function
57 fun0(S0&) in fun0()
60 S0*
62 {return new S0;} in create_s0()
65 destroy(S0* s) in destroy()
H A Dtest0-fn-changed-libapp.h3 struct S0;
11 S0*
15 destroy(S0*);
24 fun0(S0&);
H A Dtest5-fn-changed-libapp-v0.cc5 S0::S0() in S0() function in S0
14 bar(S0*) in bar()
/third_party/libabigail/tests/data/test-diff-suppr/
H A Dtest31-v0.cc7 struct S0 struct
11 S0() {} in S0() function
13 S0(int v) in S0() function
19 foo(S0& s) in foo()
31 hidden::S0 s(v); in bar()
H A Dtest31-v1.cc7 struct S0 struct
12 S0() in S0() function
16 S0(int v) in S0() function
23 foo(S0& s) in foo()
36 hidden::S0 s(v); in bar()
/third_party/libabigail/tests/data/test-diff-filter/
H A Dtest11-v1.cc1 struct S0 struct
7 S0() in S0() function
17 member_fn0(S0&);
21 S1::member_fn0(S0&) in member_fn0()
H A Dtest11-v0.cc1 struct S0 struct
6 S0() in S0() function
15 member_fn0(S0&);
19 S1::member_fn0(S0&) in member_fn0()
H A Dtest27-redundant-and-filtered-children-nodes-v1.cc3 struct S0 struct
9 typedef S0 S0Renamed;
25 S0* m0;
35 S0*
H A Dtest0-v1.cc35 class S0 : public B0S0 class
50 S0::member0() const in member0()
54 S0::get_member0() const in get_member0()
71 foo(S0&, S1*) in foo()
H A Dtest8-v0.cc1 struct S0 struct
6 S0() in S0() function
13 foo(S0&) in foo()
H A Dtest8-v1.cc1 struct S0 struct
6 S0() in S0() function
13 foo(S0&) in foo()
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha256-c64xplus.pl34 ($A,$Actx,$B,$Bctx,$C,$Cctx,$D,$Dctx,$T2,$S0,$s1,$t0a,$t1a,$t2a,$X9,$X14)
124 || ROTL $A,30,$S0
140 || XOR $t0a,$S0,$S0
142 XOR $t1a,$S0,$S0 ; Sigma0(a)
147 || ADD $S0,$Maj,$T2 ; T2 = Sigma0(a) + Maj(a,b,c)
161 ROTL $A,30,$S0 ; BODY_15
179 || XOR $t0a,$S0,$S0
[all...]
/third_party/openssl/crypto/sha/asm/
H A Dsha256-c64xplus.pl34 ($A,$Actx,$B,$Bctx,$C,$Cctx,$D,$Dctx,$T2,$S0,$s1,$t0a,$t1a,$t2a,$X9,$X14)
124 || ROTL $A,30,$S0
140 || XOR $t0a,$S0,$S0
142 XOR $t1a,$S0,$S0 ; Sigma0(a)
147 || ADD $S0,$Maj,$T2 ; T2 = Sigma0(a) + Maj(a,b,c)
161 ROTL $A,30,$S0 ; BODY_15
179 || XOR $t0a,$S0,$S0
[all...]
/third_party/libabigail/tests/data/test-diff-dwarf/
H A Dtest0-v1.cc33 class S0 : public B0S0 class
47 S0::member0() const in member0()
51 S0::get_member0() const in get_member0()
62 foo(S0&, S1*) in foo()
H A Dtest6-v1.cc1 struct S0 struct
6 S0() in S0() function
13 foo(S0&) in foo()
H A Dtest6-v0.cc1 struct S0 struct
6 S0() in S0() function
13 foo(S0&) in foo()
/third_party/libabigail/tests/data/test-diff-pkg/dirpkg-2-dir1/
H A Dobj-v0.cc4 struct S0 struct
8 S0() in S0() function
17 bar(S0&) in bar()
/third_party/libabigail/tests/data/test-diff-pkg/dirpkg-3-dir1/
H A Dobj-v0.cc4 struct S0 struct
8 S0() in S0() function
17 bar(S0&) in bar()
/third_party/libabigail/tests/data/test-diff-pkg/dirpkg-2-dir2/
H A Dobj-v0.cc4 struct S0 struct
9 S0() in S0() function
20 bar(S0&) in bar()
/third_party/libabigail/tests/data/test-diff-pkg/dirpkg-3-dir2/
H A Dobj-v0.cc4 struct S0 struct
9 S0() in S0() function
20 bar(S0&) in bar()

Completed in 14 milliseconds

12345