Searched refs:s1 (Results 76 - 100 of 643) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/wtf/
H A DStringExtras.h91 inline int strncasecmp(const char* s1, const char* s2, size_t len) argument
93 return _strnicmp(s1, s2, len);
96 inline int strcasecmp(const char* s1, const char* s2) argument
98 return _stricmp(s1, s2);
121 int strcasecmp(const char* s1, const char* s2);
122 int strncasecmp(const char* s1, const char* s2, size_t len);
/external/apache-http/src/org/apache/commons/codec/
H A DStringEncoderComparator.java73 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1);
75 compareCode = s1.compareTo(s2);
/external/clang/test/PCH/
H A Dnamespaces.cpp41 used_cls s1;
42 used_cls* ps1 = &s1;
/external/clang/test/Sema/
H A Dpragma-align-packed.c11 struct __attribute__((packed)) s1 { struct
15 extern int a[sizeof(struct s1) == 8 ? 1 : -1];
H A Dpragma-pack-and-options-align.c13 struct s1 { struct
17 extern int a[sizeof(struct s1) == 8 ? 1 : -1];
H A Dattr-weak.c12 struct __attribute__((weak_import)) s1 {}; // expected-warning {{'weak_import' attribute only applies to variables and functions}} struct
/external/e2fsprogs/misc/
H A Dutil.h18 extern int strcasecmp (char *s1, char *s2);
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSubstring.java49 XMLString s1 = m_arg0.execute(xctxt).xstr();
51 int lenOfS1 = s1.length();
88 substr = s1.substring(startIndex, end);
94 substr = s1.substring(startIndex);
/external/clang/test/CXX/except/except.spec/
H A Dp5-pointers.cpp26 void s1() throw();
43 void (*t1)() throw() = &s1; // valid
48 void (*t4)() throw(A) = &s1; // valid
52 void (*t5)() = &s1; // valid
/external/clang/test/CodeGen/
H A D2002-05-24-Alloca.c5 char *strcpy(char *restrict s1, const char *restrict s2);
/external/clang/test/CodeGenCXX/
H A Dglobal-array-destruction.cpp17 S s1; variable
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-aggregates.cpp20 S s1 = { 1, 2, 3 ,4, 5, 6, 7, 8 }; // no-error local
H A Dstatic-assert.cpp28 S<char> s1; // expected-note {{in instantiation of template class 'S<char>' requested here}} variable
/external/libgsm/src/
H A Dpreprocess.c44 word s1; local
78 s1 = SO - z1; /* s1 = gsm_sub( *so, z1 ); */
81 assert(s1 != MIN_WORD);
85 L_s2 = s1;
/external/openssl/crypto/des/
H A Ddes3s.cpp40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
H A Ddess.cpp40 unsigned long s1,s2,e1,e2; local
49 GetTSC(s1);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
/external/openssl/crypto/md4/
H A Dmd4s.cpp45 unsigned long s1,s2,e1,e2; local
66 GetTSC(s1);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/openssl/crypto/md5/
H A Dmd5s.cpp45 unsigned long s1,s2,e1,e2; local
66 GetTSC(s1);
75 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/openssl/crypto/rc4/
H A Drc4s.cpp41 unsigned long s1,s2,e1,e2; local
60 GetTSC(s1);
70 e1-s1,e2-s2,(e1-s1)-(e2-s2));
/external/openssl/crypto/ripemd/asm/
H A Drips.cpp47 unsigned long s1,s2,e1,e2; local
70 GetTSC(s1);
79 e1-s1,e2-s2,(double)((e1-s1)-(e2-s2))/2);
/external/wpa_supplicant/
H A Dos_internal.c277 int os_memcmp(const void *s1, const void *s2, size_t n) argument
279 const unsigned char *p1 = s1, *p2 = s2;
319 int os_strcasecmp(const char *s1, const char *s2) argument
325 return os_strcmp(s1, s2);
329 int os_strncasecmp(const char *s1, const char *s2, size_t n) argument
335 return os_strncmp(s1, s2, n);
365 int os_strcmp(const char *s1, const char *s2) argument
367 while (*s1 == *s2) {
368 if (*s1 == '\0')
370 s1
378 os_strncmp(const char *s1, const char *s2, size_t n) argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dos_internal.c277 int os_memcmp(const void *s1, const void *s2, size_t n) argument
279 const unsigned char *p1 = s1, *p2 = s2;
319 int os_strcasecmp(const char *s1, const char *s2) argument
325 return os_strcmp(s1, s2);
329 int os_strncasecmp(const char *s1, const char *s2, size_t n) argument
335 return os_strncmp(s1, s2, n);
365 int os_strcmp(const char *s1, const char *s2) argument
367 while (*s1 == *s2) {
368 if (*s1 == '\0')
370 s1
378 os_strncmp(const char *s1, const char *s2, size_t n) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_internal.c282 int os_memcmp(const void *s1, const void *s2, size_t n) argument
284 const unsigned char *p1 = s1, *p2 = s2;
324 int os_strcasecmp(const char *s1, const char *s2) argument
330 return os_strcmp(s1, s2);
334 int os_strncasecmp(const char *s1, const char *s2, size_t n) argument
340 return os_strncmp(s1, s2, n);
370 int os_strcmp(const char *s1, const char *s2) argument
372 while (*s1 == *s2) {
373 if (*s1 == '\0')
375 s1
383 os_strncmp(const char *s1, const char *s2, size_t n) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dos_internal.c282 int os_memcmp(const void *s1, const void *s2, size_t n) argument
284 const unsigned char *p1 = s1, *p2 = s2;
324 int os_strcasecmp(const char *s1, const char *s2) argument
330 return os_strcmp(s1, s2);
334 int os_strncasecmp(const char *s1, const char *s2, size_t n) argument
340 return os_strncmp(s1, s2, n);
370 int os_strcmp(const char *s1, const char *s2) argument
372 while (*s1 == *s2) {
373 if (*s1 == '\0')
375 s1
383 os_strncmp(const char *s1, const char *s2, size_t n) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_internal.c282 int os_memcmp(const void *s1, const void *s2, size_t n) argument
284 const unsigned char *p1 = s1, *p2 = s2;
324 int os_strcasecmp(const char *s1, const char *s2) argument
330 return os_strcmp(s1, s2);
334 int os_strncasecmp(const char *s1, const char *s2, size_t n) argument
340 return os_strncmp(s1, s2, n);
370 int os_strcmp(const char *s1, const char *s2) argument
372 while (*s1 == *s2) {
373 if (*s1 == '\0')
375 s1
383 os_strncmp(const char *s1, const char *s2, size_t n) argument
[all...]

Completed in 406 milliseconds

1234567891011>>