Home
last modified time | relevance | path

Searched refs:s2 (Results 1 - 25 of 1083) sorted by relevance

12345678910>>...44

/third_party/typescript/tests/baselines/reference/
H A DassignmentCompatWithObjectMembersStringNumericNames.js13 var s2: S2; variable
24 s = s2; // ok
27 s2 = t2;
28 t2 = s2;
29 s2 = t;
30 s2 = b;
31 s2 = a2;
36 a = s2;
54 var s2: S2; variable
65 s = s2; // o
105 var s2; global() variable
145 var s2; global() variable
[all...]
H A DassignmentCompatWithObjectMembers.js13 var s2: S2; variable
24 s = s2;
27 s2 = t2;
28 t2 = s2;
29 s2 = t;
30 s2 = b;
31 s2 = a2;
36 a = s2;
54 var s2: S2; variable
65 s = s2;
105 var s2; global() variable
145 var s2; global() variable
[all...]
H A DassignmentCompatWithObjectMembers4.js16 var s2: S2; variable
27 s = s2; // ok
30 s2 = t2; // error
31 t2 = s2; // error
32 s2 = t; // error
33 s2 = b; // error
34 s2 = a2; // ok
39 a = s2; // ok
61 var s2: S2; variable
72 s = s2; // o
144 var s2; global() variable
203 var s2; global() variable
[all...]
H A DassignmentCompatWithObjectMembers2.js12 var s2: S2; variable
23 s = s2;
26 s2 = t2;
27 t2 = s2;
28 s2 = t;
29 s2 = b;
30 s2 = a2;
35 a = s2;
60 var s2; variable
68 s = s2;
[all...]
H A DassignmentCompatWithObjectMembers3.js12 var s2: S2; variable
23 s = s2;
26 s2 = t2;
27 t2 = s2;
28 s2 = t;
29 s2 = b;
30 s2 = a2;
35 a = s2;
60 var s2; variable
68 s = s2;
[all...]
H A DassignmentCompatWithObjectMembersNumericNames.js12 var s2: S2; variable
23 s = s2;
26 s2 = t2;
27 t2 = s2;
28 s2 = t;
29 s2 = b;
30 s2 = a2;
35 a = s2;
60 var s2; variable
68 s = s2;
[all...]
H A DnoImplicitSymbolToString.js31 let s2!: S | string;
32 `${s2}`;
33 s2 + '';
34 +s2;
43 let s2!: S | symbol;
44 `${s2}`;
45 s2 + '';
46 +s2;
68 var s2;
69 "".concat(s2);
[all...]
H A DshorthandPropertyAssignmentsInDestructuring_ES6.js26 var s2;
27 for ({ s2 = 5 } of [{ s2: "" }]) {
32 var s2;
33 for ({ s2:s2 = 5 } of [{ s2: "" }]) {
140 var s2;
141 for ({ s2 = 5 } of [{ s2
[all...]
/third_party/python/Tools/stringbench/
H A Dstringbench.py78 s2 = STR("A")
80 s2 in s1
85 s2 = STR("B")
87 s2 in s1
93 s2 = STR("AB")
95 s2 in s1
100 s2 = STR("BC")
102 s2 in s1
107 s2 = STR("BC")
109 s2 i
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dadler32_simd.c19 * The adler32 B value (aka s2) sums the A values from each step:
30 * compute the adler32 s1 s2 of M >> 32 input bytes [1].
32 * As M grows, the s1 s2 sums grow. If left unchecked, they would eventually
34 * and s2 also need to be computed modulo the adler BASE value (reduced). If
35 * at most NMAX bytes are processed before a reduce, s1 s2 _cannot_ overflow
38 * [1] the iterative equations for s2 contain constant factors; these can be
42 * of the adler s1 s2 of uint32_t type (see adler32.c).
65 uint32_t s2 = adler >> 16; in adler32_simd_() local
93 * processed before s2 must be reduced modulo BASE. in adler32_simd_()
96 __m128i v_s2 = _mm_set_epi32(0, 0, 0, s2); in adler32_simd_()
212 uint32_t s2 = adler >> 16; adler32_simd_() local
[all...]
/third_party/node/deps/zlib/
H A Dadler32_simd.c19 * The adler32 B value (aka s2) sums the A values from each step:
30 * compute the adler32 s1 s2 of M >> 32 input bytes [1].
32 * As M grows, the s1 s2 sums grow. If left unchecked, they would eventually
34 * and s2 also need to be computed modulo the adler BASE value (reduced). If
35 * at most NMAX bytes are processed before a reduce, s1 s2 _cannot_ overflow
38 * [1] the iterative equations for s2 contain constant factors; these can be
42 * of the adler s1 s2 of uint32_t type (see adler32.c).
65 uint32_t s2 = adler >> 16; in adler32_simd_() local
93 * processed before s2 must be reduced modulo BASE. in adler32_simd_()
96 __m128i v_s2 = _mm_set_epi32(0, 0, 0, s2); in adler32_simd_()
212 uint32_t s2 = adler >> 16; adler32_simd_() local
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dadler32_simd.c19 * The adler32 B value (aka s2) sums the A values from each step:
30 * compute the adler32 s1 s2 of M >> 32 input bytes [1].
32 * As M grows, the s1 s2 sums grow. If left unchecked, they would eventually
34 * and s2 also need to be computed modulo the adler BASE value (reduced). If
35 * at most NMAX bytes are processed before a reduce, s1 s2 _cannot_ overflow
38 * [1] the iterative equations for s2 contain constant factors; these can be
42 * of the adler s1 s2 of uint32_t type (see adler32.c).
65 uint32_t s2 = adler >> 16; in adler32_simd_() local
93 * processed before s2 must be reduced modulo BASE. in adler32_simd_()
96 __m128i v_s2 = _mm_set_epi32(0, 0, 0, s2); in adler32_simd_()
212 uint32_t s2 = adler >> 16; adler32_simd_() local
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Ddesignated-init.c6 struct s2 { struct
13 struct s2 s2; member
18 struct s2 s2; member
23 static struct s2 s2_positional = { 5, 10 };
24 static struct s2 s2_designated = { .x = 5, .y = 10 };
31 .s2 = { 5, 10 },
39 .s2 = { .x = 5, .y = 10 },
47 .s2
[all...]
/third_party/skia/tests/
H A DStrokeTest.cpp92 SkStrokeRec s2(SkStrokeRec::kFill_InitStyle); in test_strokerec_equality()
93 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
96 s2.setHairlineStyle(); in test_strokerec_equality()
97 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2)); in test_strokerec_equality()
100 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
104 s2.setResScale(1.2f); in test_strokerec_equality()
105 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
107 s2.setFillStyle(); in test_strokerec_equality()
108 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
110 s2 in test_strokerec_equality()
[all...]
/third_party/icu/icu4c/source/common/
H A Dunormcmp.cpp49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
64 * get one code unit c2 from s2 (-1 if end of source)
144 const UChar *s2, int32_t length2, in unorm_cmpEquivFold()
149 /* current-level start/limit - s1/s2 as current */ in unorm_cmpEquivFold()
197 start2=s2; in unorm_cmpEquivFold()
201 limit2=s2+length2; in unorm_cmpEquivFold()
240 if(s2==limit2 || ((c2=*s2)==0 && (limit2==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
246 ++s2; in unorm_cmpEquivFold()
255 s2 in unorm_cmpEquivFold()
143 unorm_cmpEquivFold(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_cmpEquivFold() argument
561 unorm_compare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_compare() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dunormcmp.cpp49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
64 * get one code unit c2 from s2 (-1 if end of source)
144 const char16_t *s2, int32_t length2, in unorm_cmpEquivFold()
149 /* current-level start/limit - s1/s2 as current */ in unorm_cmpEquivFold()
197 start2=s2; in unorm_cmpEquivFold()
201 limit2=s2+length2; in unorm_cmpEquivFold()
240 if(s2==limit2 || ((c2=*s2)==0 && (limit2==nullptr || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
246 ++s2; in unorm_cmpEquivFold()
255 s2 in unorm_cmpEquivFold()
143 unorm_cmpEquivFold(const char16_t *s1, int32_t length1, const char16_t *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_cmpEquivFold() argument
561 unorm_compare(const char16_t *s1, int32_t length1, const char16_t *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_compare() argument
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dunormcmp.cpp49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
64 * get one code unit c2 from s2 (-1 if end of source)
144 const UChar *s2, int32_t length2, in unorm_cmpEquivFold()
149 /* current-level start/limit - s1/s2 as current */ in unorm_cmpEquivFold()
197 start2=s2; in unorm_cmpEquivFold()
201 limit2=s2+length2; in unorm_cmpEquivFold()
240 if(s2==limit2 || ((c2=*s2)==0 && (limit2==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
246 ++s2; in unorm_cmpEquivFold()
255 s2 in unorm_cmpEquivFold()
143 unorm_cmpEquivFold(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_cmpEquivFold() argument
561 unorm_compare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_compare() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/camellia/
H A Dcamellia.c276 * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32).
288 register u32 s0, s1, s2, s3; in Camellia_Ekeygen() local
292 k[2] = s2 = GETU32(rawKey + 8); in Camellia_Ekeygen()
299 k[10] = s2 = ~s0; in Camellia_Ekeygen()
302 k[10] = s2 = GETU32(rawKey + 24); in Camellia_Ekeygen()
305 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
309 Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0); in Camellia_Ekeygen()
310 Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2); in Camellia_Ekeygen()
312 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
313 Camellia_Feistel(s0, s1, s2, s in Camellia_Ekeygen()
407 register u32 s0, s1, s2, s3; Camellia_EncryptBlock_Rounds() local
460 u32 s0, s1, s2, s3; Camellia_DecryptBlock_Rounds() local
[all...]
/third_party/openssl/crypto/camellia/
H A Dcamellia.c276 * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32).
288 register u32 s0, s1, s2, s3; in Camellia_Ekeygen() local
292 k[2] = s2 = GETU32(rawKey + 8); in Camellia_Ekeygen()
299 k[10] = s2 = ~s0; in Camellia_Ekeygen()
302 k[10] = s2 = GETU32(rawKey + 24); in Camellia_Ekeygen()
305 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
309 Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0); in Camellia_Ekeygen()
310 Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2); in Camellia_Ekeygen()
312 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
313 Camellia_Feistel(s0, s1, s2, s in Camellia_Ekeygen()
407 register u32 s0, s1, s2, s3; Camellia_EncryptBlock_Rounds() local
460 u32 s0, s1, s2, s3; Camellia_DecryptBlock_Rounds() local
[all...]
/third_party/openssl/test/testutil/
H A Dtests.c213 const char *s1, const char *s2, \
218 test_fail_message(NULL, file, line, #type, s1, s2, #op, \
277 const char *s1, const char *s2) in test_str_eq()
279 if (s1 == NULL && s2 == NULL) in test_str_eq()
281 if (s1 == NULL || s2 == NULL || strcmp(s1, s2) != 0) { in test_str_eq()
284 s2, s2 == NULL ? 0 : strlen(s2)); in test_str_eq()
291 const char *s1, const char *s2) in test_str_ne()
276 test_str_eq(const char *file, int line, const char *st1, const char *st2, const char *s1, const char *s2) test_str_eq() argument
290 test_str_ne(const char *file, int line, const char *st1, const char *st2, const char *s1, const char *s2) test_str_ne() argument
304 test_strn_eq(const char *file, int line, const char *st1, const char *st2, const char *s1, size_t n1, const char *s2, size_t n2) test_strn_eq() argument
318 test_strn_ne(const char *file, int line, const char *st1, const char *st2, const char *s1, size_t n1, const char *s2, size_t n2) test_strn_ne() argument
332 test_mem_eq(const char *file, int line, const char *st1, const char *st2, const void *s1, size_t n1, const void *s2, size_t n2) test_mem_eq() argument
345 test_mem_ne(const char *file, int line, const char *st1, const char *st2, const void *s1, size_t n1, const void *s2, size_t n2) test_mem_ne() argument
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dstringutil.cc154 string StrCat(const StringHolder& s1, const StringHolder& s2) { in StrCat() argument
155 return absl::StrCat(s1, s2); in StrCat()
158 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
160 return absl::StrCat(s1, s2, s3); in StrCat()
163 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
165 return absl::StrCat(s1, s2, s3, s4); in StrCat()
168 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
171 return absl::StrCat(s1, s2, s3, s4, s5); in StrCat()
174 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
177 return absl::StrCat(s1, s2, s in StrCat()
180 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7) StrCat() argument
187 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8) StrCat() argument
197 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9) StrCat() argument
205 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11) StrCat() argument
214 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12) StrCat() argument
223 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13) StrCat() argument
234 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13, const StringHolder& s14) StrCat() argument
245 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13, const StringHolder& s14, const StringHolder& s15) StrCat() argument
257 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13, const StringHolder& s14, const StringHolder& s15, const StringHolder& s16) StrCat() argument
275 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2) StrAppend() argument
279 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, const StringHolder& s3) StrAppend() argument
284 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4) StrAppend() argument
289 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5) StrAppend() argument
[all...]
H A Dstringutil.h105 string StrCat(const StringHolder& s1, const StringHolder& s2);
107 string StrCat(const StringHolder& s1, const StringHolder& s2,
110 string StrCat(const StringHolder& s1, const StringHolder& s2,
113 string StrCat(const StringHolder& s1, const StringHolder& s2,
117 string StrCat(const StringHolder& s1, const StringHolder& s2,
121 string StrCat(const StringHolder& s1, const StringHolder& s2,
126 string StrCat(const StringHolder& s1, const StringHolder& s2,
131 string StrCat(const StringHolder& s1, const StringHolder& s2,
137 string StrCat(const StringHolder& s1, const StringHolder& s2,
144 string StrCat(const StringHolder& s1, const StringHolder& s2,
[all...]
/third_party/lzma/CPP/Common/
H A DMyString.h217 bool StringsAreEqualNoCase(const wchar_t *s1, const wchar_t *s2) throw();
219 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw();
220 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw();
221 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw();
222 bool IsString1PrefixedByString2_NoCase_Ascii(const char *s1, const char *s2) throw();
224 bool IsString1PrefixedByString2_NoCase(const wchar_t *s1, const wchar_t *s2) throw();
226 #define MyStringCompare(s1, s2) wcscmp(s1, s2)
227 int MyStringCompareNoCase(const wchar_t *s1, const wchar_t *s2) throw();
228 // int MyStringCompareNoCase_N(const wchar_t *s1, const wchar_t *s2, unsigne
526 operator ==(const AString &s1, const AString &s2) operator ==() argument
527 operator ==(const AString &s1, const char *s2) operator ==() argument
528 operator ==(const char *s1, const AString &s2) operator ==() argument
530 operator !=(const AString &s1, const AString &s2) operator !=() argument
531 operator !=(const AString &s1, const char *s2) operator !=() argument
532 operator !=(const char *s1, const AString &s2) operator !=() argument
801 operator ==(const UString &s1, const UString &s2) operator ==() argument
802 operator ==(const UString &s1, const wchar_t *s2) operator ==() argument
803 operator ==(const wchar_t *s1, const UString &s2) operator ==() argument
805 operator !=(const UString &s1, const UString &s2) operator !=() argument
806 operator !=(const UString &s1, const wchar_t *s2) operator !=() argument
807 operator !=(const wchar_t *s1, const UString &s2) operator !=() argument
904 operator !=(const UString2 &s1, const UString2 &s2) operator !=() argument
905 operator !=(const UString2 &s1, const wchar_t *s2) operator !=() argument
906 operator !=(const wchar_t *s1, const UString2 &s2) operator !=() argument
992 operator +(const FString &s1, const FString &s2) operator +() argument
998 operator +(const FString &s1, const FChar *s2) operator +() argument
[all...]
/third_party/ffmpeg/libavcodec/ppc/
H A Dvc1dsp_altivec.c34 #define STEP8(s0, s1, s2, s3, s4, s5, s6, s7, vec_rnd) \
43 t2 = vec_add(t2, vec_sl(s2, vec_4)); \
44 t3 = vec_add(vec_sl(s2, vec_2), vec_sl(s2, vec_1)); \
73 s2 = vec_add(t6, t2); \
81 #define SHIFT_HOR8(s0, s1, s2, s3, s4, s5, s6, s7) \
85 s2 = vec_sra(s2, vec_3); \
93 #define SHIFT_VERT8(s0, s1, s2, s3, s4, s5, s6, s7) \
97 s2
141 vector signed int s0, s1, s2, s3, s4, s5, s6, s7; vc1_inv_trans_8x8_altivec() local
237 vector signed int s0, s1, s2, s3, s4, s5, s6, s7; vc1_inv_trans_8x4_altivec() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/aes/asm/
H A Daes-ppc.pl88 $s2="r10";
381 lwz $s2,8($inp)
391 rotlwi $s2,$t2,8
395 rlwimi $s2,$t2,24,0,7
399 rlwimi $s2,$t2,24,16,23
410 rotlwi $t2,$s2,8
414 rlwimi $t2,$s2,24,0,7
418 rlwimi $t2,$s2,24,16,23
428 stw $s2,8($out)
455 lbz $s2,1
[all...]

Completed in 19 milliseconds

12345678910>>...44