Searched defs:s2 (Results 126 - 150 of 371) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dformat-strings.c123 const char s2[] = "hello"; local
129 printf(s2); // no-warning
H A Dinit.c78 struct s1 s2 = { // expected-error {{variable has incomplete type 'struct s1'}} \ variable in typeref:struct:s1
H A Dtype-spec-struct-union.c14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) { argument
15 if (s1->u1.x == s2) return 1;
21 struct S2 { int x; } *s2 = 0; local
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */
/external/clang/test/SemaTemplate/
H A Dinstantiate-declref.cpp52 struct { U x, y; } s2; local
53 s1.x = s2.x; // expected-error{{incompatible}}
/external/grub/stage2/
H A Dmd5.c62 static char s2[4] = { 5, 9, 14, 20 }; variable
117 tmp = ROTATE_LEFT (tmp, s2[i & 3]);
/external/icu4c/common/
H A Duinvchar.c518 uprv_compareInvEbcdicAsAscii(const char *s1, const char *s2) { argument
521 for(;; ++s1, ++s2) {
523 c2=(uint8_t)*s2;
529 c2=-(int32_t)(uint8_t)*s2;
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,
150 /* current-level start/limit - s1/s2 as current */
203 start2=s2;
207 limit2=s2+length2;
246 if(s2==limit2 || ((c2=*s2)==0 && (limit2==NULL || (options&_STRNCMP_STYLE)))) {
252 ++s2;
261 s2
143 unorm_cmpEquivFold(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) argument
538 unorm_compare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) argument
[all...]
/external/icu4c/test/cintltst/
H A Dspooftest.c455 char s2[200]; local
459 u_strToUTF8(s2, sizeof(s2), NULL, scMixed, -1, &status);
461 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
466 u_strToUTF8(s2, sizeof(s2), NULL, scLatin, -1, &status);
468 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
473 u_strToUTF8(s2, sizeof(s2), NULL, lll_Latin_b, -1, &status);
475 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2,
[all...]
/external/icu4c/test/intltest/
H A Dcanittst.cpp249 compareUnicodeStrings(const void *s1, const void *s2) { argument
251 UnicodeString **st2 = (UnicodeString **)s2;
H A Ddcfmapts.cpp308 UnicodeString s2; local
309 s2 = pat.toPattern(s2);
310 logln((UnicodeString)"Extracted pattern is " + s2);
311 if(s2 != p1) {
H A Ditspoof.cpp112 UnicodeString s2 = UnicodeString("\\u0441\\u0445\\u0455").unescape(); // Cyrillic "cxs" local
113 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status);
234 UnicodeString s2("A long string that wi11 overflow stack buffers. A long string that will overflow stack buffers. "
236 TEST_ASSERT_EQ(USPOOF_SINGLE_SCRIPT_CONFUSABLE, uspoof_areConfusableUnicodeString(sc, s1, s2, &status));
250 UnicodeString s2 = UnicodeString("abcd\\u0301\\u0302\\u0301ef").unescape(); local
251 TEST_ASSERT_EQ(USPOOF_INVISIBLE, uspoof_checkUnicodeString(sc, s2, &position, &status));
H A Dnmfmtrt.cpp238 UnicodeString s, s2, temp; local
255 s2 = fmt->format(n.getDouble(), s2);
257 s2 = fmt->format(n.getLong(), s2);
260 logln(/*n.getString(temp) +*/ " F> " + escape(s2));
263 if (s != s2) {
264 errln("*** STRING ERROR \"" + escape(s) + "\" != \"" + escape(s2) + "\"");
294 escape(s2));
H A Dnormconf.cpp59 void NormalizerConformanceTest::compare(const UnicodeString& s1, const UnicodeString& s2){ argument
63 if(Normalizer::compare(s1,s2,U_FOLD_CASE_DEFAULT,status)!=0){
64 errln("Normalizer::compare() failed for s1: " + prettify(s1) + " s2: " +prettify(s2));
H A Dthcoll.cpp272 UnicodeString s1, s2; local
274 parseChars(s2, tests[i+2]);
276 doTest(&c, s1, s2, expect);
279 int32_t result = c.compare(s1, s2);
285 + " , " + IntlTest::prettify(s2, t2)
290 c.getCollationKey(s2, k2, status);
303 c.getCollationKey(s2, k2, status);
314 + ").compareTo(key(" + IntlTest::prettify(s2, t2)
/external/iproute2/ip/
H A Diptunnel.c308 char s2[1024]; local
323 p->iph.saddr ? rt_addr_n2a(AF_INET, 4, &p->iph.saddr, s2, sizeof(s2)) : "any");
/external/libnfc-nxp/src/
H A DphFriNfc_MifStdFormat.c172 static int phFriNfc_MfStd_MemCompare ( void *s1, void *s2, unsigned int n );
1280 static int phFriNfc_MfStd_MemCompare( void *s1, void *s2, unsigned int n ) argument
1284 int8_t *char_2 =(int8_t *)s2;
1285 if(NULL == s1 || NULL == s2)
/external/opencv/cv/src/
H A Dcvmatchcontours.cpp233 char s1, s2; local
286 s1 = s2 = 0;
327 s2 = ptr21[j]->sign;
341 if( s1 != s2 )
/external/opencv/cxcore/src/
H A Dcxjacobieigens.cpp115 double x, y, c, s, c2, s2, a; local
131 s2 = s * s;
132 c = sqrt( 1.0 - s2 );
171 A1[p] = (float) (App * c2 + Aqq * s2 - a);
172 A2[q] = (float) (App * s2 + Aqq * c2 + a);
265 double x, y, c, s, c2, s2, a; local
282 s2 = s * s;
283 c = sqrt( 1.0 - s2 );
322 App2 = App * c2 + Aqq * s2 - a;
323 Aqq2 = App * s2
[all...]
/external/openssl/crypto/aes/
H A Daes_core.c785 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
799 s2 = GETU32(in + 8) ^ rk[2];
803 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
804 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
805 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
806 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
810 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10];
813 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
814 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
815 t2 = Te0[s2 >> 2
976 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
H A Daes_x86core.c656 u32 s0, s1, s2, s3, t[4]; local
668 s2 = GETU32(in + 8) ^ rk[2];
676 Te4[(s2 >> 16) & 0xff] << 16 ^
679 Te4[(s2 >> 8) & 0xff] << 8 ^
682 t[2] = Te4[(s2 ) & 0xff] ^
689 Te4[(s2 >> 24) ] << 24;
714 Te2[(s2 >> 16) & 0xff] ^
718 Te1[(s2 >> 8) & 0xff] ^
722 t[2] = Te0[(s2 ) & 0xff] ^
730 Te3[(s2 >> 2
868 u32 s0, s1, s2, s3, t[4]; local
[all...]
/external/openssl/ssl/
H A Ds2_lib.c316 return SSL_in_init(s) ? 0 : s->s2->ract_data_length;
321 SSL2_STATE *s2; local
323 if ((s2=OPENSSL_malloc(sizeof *s2)) == NULL) goto err;
324 memset(s2,0,sizeof *s2);
330 if ((s2->rbuf=OPENSSL_malloc(
334 if ((s2->wbuf=OPENSSL_malloc(
336 s->s2=s2;
352 SSL2_STATE *s2; local
367 SSL2_STATE *s2; local
[all...]
/external/qemu/
H A Daes.c889 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
903 s2 = GETU32(in + 8) ^ rk[2];
907 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
908 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
909 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
910 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
914 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10];
917 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
918 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
919 t2 = Te0[s2 >> 2
1080 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
H A Darm-semi.c335 char *s2; local
337 s2 = lock_user_string(ARG(2));
338 if (!s || !s2)
342 ret = set_swi_errno(ts, rename(s, s2));
343 if (s2)
344 unlock_user(s2, ARG(2), 0);
/external/qemu/android/
H A Dqemu-setup.c110 int s = -1, s2; local
188 s2 = socket_accept(s, NULL);
189 } while (s2 < 0 && --tries > 0);
191 if (s2 < 0) {
198 s = s2;
/external/speex/libspeex/
H A Dkiss_fft.c334 /*printf ("fft %d %d %d %d %d %d\n", p*m, m, p, s2, fstride*in_stride, N);*/
363 int s2,
372 /*printf ("fft %d %d %d %d %d %d\n", p*m, m, p, s2, fstride*in_stride, N);*/
401 /*printf ("fft %d %d %d %d %d %d %d\n", p*m, m, p, s2, fstride*in_stride, N, m2);*/
408 const kiss_fft_cpx * f2 = f+i*s2;
355 kf_work( kiss_fft_cpx * Fout, const kiss_fft_cpx * f, const size_t fstride, int in_stride, int * factors, const kiss_fft_cfg st, int N, int s2, int m2 ) argument

Completed in 447 milliseconds

1234567891011>>