Searched defs:s1 (Results 26 - 50 of 850) sorted by relevance

1234567891011>>

/external/libutf/
H A Drunestrcat.c20 runestrcat(Rune *s1, const Rune *s2) argument
23 runestrcpy((Rune*)runestrchr(s1, 0), s2);
24 return s1;
H A Drunestrcpy.c20 runestrcpy(Rune *s1, const Rune *s2) argument
24 os1 = s1;
25 while((*s1++ = *s2++) != 0)
H A Drunestrecpy.c20 runestrecpy(Rune *s1, Rune *es1, const Rune *s2) argument
22 if(s1 >= es1)
23 return s1;
25 while((*s1++ = *s2++) != 0){
26 if(s1 == es1){
27 *--s1 = '\0';
31 return s1;
H A Drunestrcmp.c20 runestrcmp(const Rune *s1, const Rune *s2) argument
25 c1 = *s1++;
H A Drunestrncat.c20 runestrncat(Rune *s1, const Rune *s2, long n) argument
24 os1 = s1;
25 s1 = (Rune*)runestrchr(s1, 0);
26 while((*s1++ = *s2++) != 0)
28 s1[-1] = 0;
/external/valgrind/main/memcheck/tests/
H A Dmemcmptest.c8 char *s1, *s2; variable
11 s1 = malloc(10); strcpy(s1,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
/external/valgrind/main/none/tests/
H A Dfdleak_fcntl.c8 int s1; local
12 s1 = DO( open("/dev/null", O_RDONLY) );
13 (void) DO( fcntl(s1, F_DUPFD, s1) );
H A Dfdleak_dup2.c7 int s1; local
12 s1 = DO( open("/dev/null", O_RDONLY) );
15 (void) DO( dup2(s1, 20) ); // dup s1 as fd 20
16 (void) DO( dup2(s1, s2) ); // dup s1 as fd s2, which closes existing s2 fd
/external/valgrind/main/none/tests/mips64/
H A Dfpu_load_store.c7 int s1 = sizeof(int); local
14 for (i = 0; i < N*s1; i = i+8)
21 for (i = 0; i < N*s1; i = i+8)
28 for (i = 0; i < N*s1; i = i+4)
35 for (i = 0; i < N*s1; i = i+4)
46 for (i = 0; i < N*s1; i = i+8) {
52 for (i = 0; i < (N-1)*s1; i = i+4) {
58 for (i = 0; i < N*s1; i = i+8) {
64 for (i = 0; i < (N-1)*s1; i = i+4) {
H A Dload_store.c7 int s1 = sizeof(int); local
14 for (i = 0; i < N*s1; i++)
21 for (i = 0; i < N*s1; i++)
28 for (i = 0; i < N*s1; i = i+8)
35 for (i = 0; i < N*s1; i++)
42 for (i = 0; i < N*s1; i++)
49 for (i = 0; i < N*s1; i = i+2)
56 for (i = 0; i < N*s1; i = i+2)
63 for (i = 0; i < N*s1; i = i+4)
70 for (i = 0; i < N*s1;
[all...]
/external/chromium_org/third_party/cld/base/
H A Dstring_util.h15 // Compare the two strings s1 and s2 without regard to case using
16 // the current locale; returns 0 if they are equal, 1 if s1 > s2, and -1 if
17 // s2 > s1 according to a lexicographic comparison.
18 inline int strcasecmp(const char* s1, const char* s2) { argument
19 return _stricmp(s1, s2);
22 inline int strcasecmp(const char* s1, const char* s2) {
23 return ::strcasecmp(s1, s2);
/external/clang/test/CodeGen/
H A D2002-04-09-StructRetVal.c5 short s1, s2; member in struct:S
H A D2007-05-07-PaddingElements.c6 int s1; member in struct:s
H A Dmms-bitfields.c3 struct s1 { struct
6 } s1; variable in typeref:struct:s1
8 // CHECK: %struct.s1 = type { i32, [4 x i8], i64 }
19 struct s1 s;
22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
H A Dms_struct.c4 struct s1 { struct
7 } ATTR s1; variable in typeref:struct:s1
9 // CHECK: %struct.s1 = type { i32, [4 x i8], i64 }
20 struct s1 s;
23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
H A Dpragma-pack-2.c3 // CHECK-X32: %struct.s1 = type { [15 x i32], %struct.s0 }
7 // CHECK-X64: %struct.s1 = type { [15 x i32], %struct.s0 }
19 struct s1 { struct
/external/fio/lib/
H A Dstrcasestr.c4 char *strcasestr(const char *s1, const char *s2) argument
6 const char *s = s1;
11 return (char *) s1;
20 s = ++s1;
24 return *p ? NULL : (char *) s1;
/external/libcxx/test/strings/basic.string/string.cons/
H A Dcopy_assignment.pass.cpp22 test(S s1, const S& s2) argument
24 s1 = s2;
25 assert(s1.__invariants());
26 assert(s1 == s2);
27 assert(s1.capacity() >= s1.size());
/external/libcxx/test/strings/basic.string/string.iterators/
H A Ddb_iterators_2.pass.cpp30 S s1; local
32 bool b = s1.begin() < s2.begin();
38 S s1;
40 bool b = s1.begin() < s2.begin();
/external/bison/lib/
H A Dc-strcasecmp.c27 c_strcasecmp (const char *s1, const char *s2) argument
29 register const unsigned char *p1 = (const unsigned char *) s1;
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log_helpers_unittest.cc24 std::string s1, s2; local
25 v1.ToString(&s1);
27 ASSERT_EQ(s1, "5,");
30 v1.ToString(&s1);
31 ASSERT_EQ(s1, s2);
39 std::string s1, s2; local
40 v1.ToString(&s1);
42 ASSERT_EQ(s1, "3.5,");
45 v1.ToString(&s1);
46 ASSERT_EQ(s1, s
55 std::string s1, s2, s3; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dstrcasecmp.c46 yasm__strcasecmp(const char *s1, const char *s2) argument
49 return strcasecmp(s1, s2);
51 return stricmp(s1, s2);
53 return _stricmp(s1, s2);
55 return strcmpi(s1, s2);
58 *us1 = (const unsigned char *)s1,
69 yasm__strncasecmp(const char *s1, const char *s2, size_t n) argument
72 return strncasecmp(s1, s2, n);
74 return strnicmp(s1, s2, n);
76 return _strnicmp(s1, s
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Down-symbols.js8 var s1 = %CreatePrivateOwnSymbol("s1"); variable
33 o[s1] = "bow-wow";
36 assertEquals("bow-wow", o[s1]);
50 oNew[s1] = "bow-wow";
H A Dsubstr.js39 var s1 = s.substring(1); variable
40 assertEquals(s1, s.substr(1));
41 assertEquals(s1, s.substr('1'));
42 assertEquals(s1, s.substr(true));
43 assertEquals(s1, s.substr(1.1));
44 assertEquals(s1, s.substr({ valueOf: function() { return 1; } }));
45 assertEquals(s1, s.substr({ toString: function() { return '1'; } }));
56 assertEquals(s1, s.substr(-s.length + 1));
/external/clang/test/FixIt/
H A Dfixit-errors.c13 union s *s1; // expected-error{{use of 's' with tag type that does not match previous declaration}} variable in typeref:union:s

Completed in 378 milliseconds

1234567891011>>