Searched refs:s1 (Results 26 - 50 of 643) sorted by relevance

1234567891011>>

/external/tcpdump/
H A Dstrcasecmp.c67 strcasecmp(s1, s2)
68 const char *s1, *s2;
71 *us1 = (u_char *)s1,
81 strncasecmp(s1, s2, n)
82 const char *s1, *s2;
86 *us1 = (u_char *)s1,
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp12 mutable struct s1 {}; // expected-error{{'mutable' cannot be applied to non-data members}} struct in struct:s0
/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
/external/clang/test/SemaCXX/
H A Dstatic-cast-complete-type.cpp10 S<void*> s1 = static_cast<S<void*> >(00); local
H A Delaborated-type-specifier.cpp13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) { argument
14 if (s1->x == s2) return true;
15 if (s1->y == s3) return true;
/external/chromium/base/
H A Dstring16.cc22 int c16memcmp(const char16* s1, const char16* s2, size_t n) { argument
25 if (*s1 != *s2) {
26 // We cannot use (*s1 - *s2) because char16 is unsigned.
27 return ((*s1 < *s2) ? -1 : 1);
29 ++s1;
53 char16* c16memmove(char16* s1, const char16* s2, size_t n) { argument
54 return reinterpret_cast<char16*>(memmove(s1, s2, n * sizeof(char16)));
57 char16* c16memcpy(char16* s1, const char16* s2, size_t n) { argument
58 return reinterpret_cast<char16*>(memcpy(s1, s2, n * sizeof(char16)));
/external/chromium/googleurl/base/
H A Dstring16.cc42 int c16memcmp(const char16* s1, const char16* s2, size_t n) { argument
45 if (*s1 != *s2) {
46 // We cannot use (*s1 - *s2) because char16 is unsigned.
47 return ((*s1 < *s2) ? -1 : 1);
49 ++s1;
73 char16* c16memmove(char16* s1, const char16* s2, size_t n) { argument
74 return reinterpret_cast<char16*>(memmove(s1, s2, n * sizeof(char16)));
77 char16* c16memcpy(char16* s1, const char16* s2, size_t n) { argument
78 return reinterpret_cast<char16*>(memcpy(s1, s2, n * sizeof(char16)));
/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp6.cpp20 struct s1 { static const s0 foo; }; struct
21 const struct s0 s1::foo; // expected-error{{default initialization of an object of const type 'const struct s0' requires a user-provided default constructor}}
/external/clang/test/CodeGen/
H A Dpacked-structure.c38 struct s1 { struct
46 int s1_align_x = __alignof(((struct s1*)0)->x);
47 int s1_align_y = __alignof(((struct s1*)0)->y);
48 int s1_align = __alignof(struct s1);
53 int s1_load_x(struct s1 *a) { return a->x; }
57 int s1_load_y(struct s1 *a) { return a->y; }
60 void s1_copy(struct s1 *a, struct s1 *b) { *b = *a; }
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
H A Dpacked-arrays.c8 struct s1 { struct
29 int align1 = __alignof(struct s1);
39 int align1_x = __alignof(((struct s1*) 0)->x);
48 int align1_x0 = __alignof(((struct s1*) 0)->x[0]);
84 int f1_a(struct s1 *a) {
87 int f1_b(struct s1 *a) {
90 int f1_c(struct s1 *a) {
93 int f1_d(struct s1 *a) {
/external/clang/test/Index/Inputs/
H A Dt1.c20 struct S1 s1; local
21 s1.x = 0;
/external/embunit/inc/
H A DstdImpl.h46 char* stdimpl_strcpy(char *s1, const char *s2);
50 int stdimpl_strcmp(const char *s1, const char *s2);
/external/v8/test/mjsunit/
H A Dstring-compare-alignment.js34 var s1 = base.substring(0, 64);
38 o[s1] = 1;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSequenceInputStreamTest.java31 String s1 = "Hello"; field in class:SequenceInputStreamTest
58 InputStream is = new ByteArrayInputStream(s1.getBytes("UTF-8"));
74 streams[0] = new ByteArrayInputStream(s1.getBytes("UTF-8"));
89 byte buf[] = new byte[s1.length() + s2.length()];
90 si.read(buf, 0, s1.length());
91 si.read(buf, s1.length(), s2.length());
93 buf, "UTF-8").equals(s1 + s2));
108 si.available() == s1.length());
130 assertTrue("Read incorrect char", (char) si.read() == s1.charAt(1));
148 byte buf[] = new byte[s1
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dequal.h45 StateId s1 = siter1.Value(); local
47 if (s1 != s2) {
49 << ", state1 = " << s1
53 Weight final1 = fst1.Final(s1);
57 << " state = " << s1
62 ArcIterator< Fst<Arc> > aiter1(fst1, s1);
67 << " state = " << s1;
74 << " state = " << s1
81 << " state = " << s1
88 << " state = " << s1
[all...]
H A Dstatesort.h54 StateId s1 = siter.Value(), s2; local
55 if (done[s1])
57 Weight final1 = fst->Final(s1), final2 = Weight::Zero();
59 for (ArcIterator< MutableFst<Arc> > aiter(*fst, s1);
63 for (; !done[s1]; s1 = s2, final1 = final2, swap(arcs1, arcs2)) {
64 s2 = order[s1];
80 done[s1] = true;
/external/apache-harmony/archive/src/test/java-internal/org/apache/harmony/archive/util/
H A DUtilTest.java47 final String s1 = ASCII_ALPHABET_LC;
49 assertTrue(Util.asciiEndsWithIgnoreCase(s1, s2));
50 assertTrue(Util.asciiEndsWithIgnoreCase(s2, s1));
51 assertTrue(Util.asciiEndsWithIgnoreCase(s1, "wxyz"));
55 final String s1 = ASCII_ALPHABET_LC;
57 assertTrue(Util.asciiEqualsIgnoreCase(s1, s2));
58 assertTrue(Util.asciiEqualsIgnoreCase(s2, s1));
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncSubstringBefore.java46 String s1 = m_arg0.execute(xctxt).str();
48 int index = s1.indexOf(s2);
51 ? XString.EMPTYSTRING : new XString(s1.substring(0, index));
/external/chromium/chrome/common/extensions/
H A Dextension_error_utils.h15 const std::string& s1);
18 const std::string& s1,
22 const std::string& s1,
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-185165.js56 var s1 = f1.toString();
59 eval("f2=" + s1);
64 expect = s1;
/external/stlport/test/unit/
H A Dmfunptr_test.cpp40 struct S1 { } s1; variable in typeref:struct:S1
78 ptr_fun(f1)(s1);
79 ptr_fun(f2)(s1, s2);
81 ptr_fun(f1c)(s1);
82 ptr_fun(f2c)(s1, s2);
85 ptr_fun(vf1)(s1);
86 ptr_fun(vf2)(s1, s2);
88 ptr_fun(vf1c)(s1);
89 ptr_fun(vf2c)(s1, s2);
95 mem_fun(&Class::f1)(&obj, s1);
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java51 private boolean isEqual(String s1, String s2) argument
53 if (s1 == s2)
58 if (s1 == null || s2 == null)
63 return s1.equals(s2);
/external/clang/test/CXX/class/class.nest/
H A Dp3.cpp24 S1 s1; member in namespace:PR6107
/external/clang/test/Misc/
H A Dverify.c6 struct s s1; // expected-error {{tentative definition has type 'struct s' that is never completed}} variable in typeref:struct:s

Completed in 706 milliseconds

1234567891011>>