/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | StringSwitch.h | 107 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, Value).Cases(S1, S 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 D | StringSwitch.h | 88 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, Value).Cases(S1, S 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...] |
H A D | SetOperations.h | 22 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument 27 if (S1.insert(*SI).second) in set_union() 35 /// is nicer to use. Functionally, this iterates through S1, removing 39 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument 40 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) { in set_intersect() 43 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 in set_intersect() 50 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { in set_difference() argument 52 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1 in set_difference() 62 set_subtract(S1Ty &S1, const S2Ty &S2) set_subtract() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | MergedLoadStoreMotion.cpp | 119 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 211 StoreInst *S1) { in getPHIOperand() 214 Value *Opd2 = S1->getValueOperand(); in getPHIOperand() 220 NewPN->applyMergedLocation(S0->getDebugLoc(), S1->getDebugLoc()); in getPHIOperand() 222 NewPN->addIncoming(Opd2, S1->getParent()); in getPHIOperand() 230 StoreInst *S1) const { in canSinkStoresAndGEPs() 232 auto *A1 = dyn_cast<Instruction>(S1->getPointerOperand()); in canSinkStoresAndGEPs() 235 (A1->getParent() == S1 in canSinkStoresAndGEPs() 210 getPHIOperand(BasicBlock *BB, StoreInst *S0, StoreInst *S1) getPHIOperand() argument 243 sinkStoresAndGEPs(BasicBlock *BB, StoreInst *S0, StoreInst *S1) sinkStoresAndGEPs() argument [all...] |
/third_party/libabigail/tests/data/test-abicompat/ |
H A D | test0-fn-changed-libapp-v0.cc | 19 struct S1 struct 23 S1() in S1() function 54 S1* 56 {return new S1;} in create_s1() 59 destroy(S1* s) in destroy() 67 fun1(S1*) in fun1()
|
H A D | test0-fn-changed-libapp-v1.cc | 21 struct S1 struct 27 S1() in S1() function 68 S1* 70 {return new S1;} in create_s1() 73 destroy(S1* s) in destroy() 77 fun1(S1*) in fun1()
|
H A D | test0-fn-changed-libapp.h | 5 struct S1; 17 S1* 21 destroy(S1*); 27 fun1(S1*);
|
H A D | test5-fn-changed-libapp-v0.cc | 9 S1::S1() in S1() function in S1 18 foo(S1*) in foo()
|
H A D | test5-fn-changed-libapp-v1.cc | 9 S1::S1() in S1() function in S1 18 foo(S1*) in foo()
|
H A D | test5-fn-changed-libapp-v0.h | 8 struct S1 struct 13 S1(); 20 foo(S1*);
|
H A D | test5-fn-changed-libapp-v1.h | 9 struct S1 struct 13 S1(); 20 foo(S1*);
|
H A D | test6-var-changed-libapp-v0.cc | 9 S1::S1() in S1() function in S1 15 S1* foo = 0;
|
H A D | test6-var-changed-libapp-v1.cc | 9 S1::S1() in S1() function in S1 15 S1* foo = 0;
|
H A D | test6-var-changed-libapp-v0.h | 8 struct S1 struct 13 S1(); 18 extern S1* foo;
|
/third_party/mesa3d/src/amd/addrlib/src/gfx10/ |
H A D | gfx10SwizzlePattern.h | 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, S1, X0, Y0, }, // 22 3767 {S0, S1, S2, X0, Y0, X1, Y1, X2, }, // 23 3768 {0, S0, S1, S2, X0, Y0, X1, Y1, }, // 24 3769 {0, 0, S0, S1, S2, X0, Y0, X1, }, // 25 3770 {0, 0, 0, S0, S1, S2, X0, Y0, }, // 26 3771 {0, 0, 0, 0, S0, S1, S [all...] |
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha256-c64xplus.pl | 36 ($E,$Ectx,$F,$Fctx,$G,$Gctx,$H,$Hctx,$T1,$S1,$s0,$t0e,$t1e,$t2e,$X1,$X15) 127 || ROTL $E,26,$S1 141 || XOR $t0e,$S1,$S1 143 || XOR $t1e,$S1,$S1 ; Sigma1(e) 146 ADD $S1,$T1,$T1 ; T1 += Sigma1(e) 164 || ROTL $E,26,$S1 180 || XOR $t0e,$S1,$S1 [all...] |
/third_party/openssl/crypto/sha/asm/ |
H A D | sha256-c64xplus.pl | 36 ($E,$Ectx,$F,$Fctx,$G,$Gctx,$H,$Hctx,$T1,$S1,$s0,$t0e,$t1e,$t2e,$X1,$X15) 127 || ROTL $E,26,$S1 141 || XOR $t0e,$S1,$S1 143 || XOR $t1e,$S1,$S1 ; Sigma1(e) 146 ADD $S1,$T1,$T1 ; T1 += Sigma1(e) 164 || ROTL $E,26,$S1 180 || XOR $t0e,$S1,$S1 [all...] |
/third_party/libabigail/tests/data/test-diff-filter/ |
H A D | test0-v1.cc | 57 class S1 : public B0S1 class 67 S1::member0() in member0() 71 foo(S0&, S1*) in foo() 75 bar(S1&) in bar()
|
H A D | test0-v0.cc | 46 class S1 : public B0S1 class 54 S1::member0() in member0() 58 foo(S0&, S1*) in foo() 62 bar(S1&) in bar()
|
H A D | test11-v1.cc | 14 struct S1 struct 21 S1::member_fn0(S0&) in member_fn0() 25 foo(S1&) in foo()
|
H A D | test11-v0.cc | 12 struct S1 struct 19 S1::member_fn0(S0&) in member_fn0() 23 foo(S1&) in foo()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | issue-1076-unnamed-bitfield-alignment.rs | 96 pub struct S1 { structure names 103 ::std::mem::size_of::<S1>(), in bindgen_test_layout_S1() 105 concat!("Size of: ", stringify!(S1)) in bindgen_test_layout_S1() 108 ::std::mem::align_of::<S1>(), in bindgen_test_layout_S1() 110 concat!("Alignment of ", stringify!(S1)) in bindgen_test_layout_S1() 113 impl S1 { impls
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | sha1-tlsprf.c | 34 const u8 *S1, *S2; in tls_prf_sha1_md5() local 60 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed) in tls_prf_sha1_md5() 64 S1 = secret; in tls_prf_sha1_md5() 67 /* The last byte of S1 will be shared with S2 */ in tls_prf_sha1_md5() 71 hmac_md5_vector(S1, L_S1, 2, &MD5_addr[1], &MD5_len[1], A_MD5); in tls_prf_sha1_md5() 78 hmac_md5_vector(S1, L_S1, 3, MD5_addr, MD5_len, P_MD5); in tls_prf_sha1_md5() 80 hmac_md5(S1, L_S1, A_MD5, MD5_MAC_LEN, A_MD5); in tls_prf_sha1_md5()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | sha1-tlsprf.c | 34 const u8 *S1, *S2; in tls_prf_sha1_md5() local 60 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed) in tls_prf_sha1_md5() 64 S1 = secret; in tls_prf_sha1_md5() 67 /* The last byte of S1 will be shared with S2 */ in tls_prf_sha1_md5() 71 hmac_md5_vector(S1, L_S1, 2, &MD5_addr[1], &MD5_len[1], A_MD5); in tls_prf_sha1_md5() 78 hmac_md5_vector(S1, L_S1, 3, MD5_addr, MD5_len, P_MD5); in tls_prf_sha1_md5() 80 hmac_md5(S1, L_S1, A_MD5, MD5_MAC_LEN, A_MD5); in tls_prf_sha1_md5()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | superAccess.js | 3 static S1: number = 5; 10 var l3 = super.S1; // Expected => Error: Only public instance methods of the base class are accessible via the 'super' keyword 37 MyBase.S1 = 5;
46 var l3 = _super.prototype.S1; // Expected => Error: Only public instance methods of the base class are accessible via the 'super' keyword
|