Searched defs:s2 (Results 176 - 200 of 846) sorted by relevance

1234567891011>>

/external/clang/test/OpenMP/
H A Dparallel_copyin_messages.cpp15 S2 & operator =(S2 &s2) { return *this; } argument
H A Dparallel_for_copyin_messages.cpp16 S2 &operator=(S2 &s2) { return *this; } argument
H A Dparallel_sections_copyin_messages.cpp16 S2 &operator=(S2 &s2) { return *this; } argument
H A Dsingle_copyprivate_messages.cpp12 S2 &operator=(S2 &s2) { return *this; } argument
/external/clang/test/Sema/
H A Dpragma-align-mac68k.c23 struct s2 { struct
27 extern int a2_0[offsetof(struct s2, f0) == 0 ? 1 : -1];
28 extern int a2_1[offsetof(struct s2, f1) == 2 ? 1 : -1];
29 extern int a2_2[sizeof(struct s2) == 10 ? 1 : -1];
30 extern int a2_3[__alignof(struct s2) == 2 ? 1 : -1];
H A Dwarn-strlcpycat-size.c9 char s2[200]; variable
21 strlcpy(s1, s2, sizeof(s1)); // no warning
22 strlcpy(s1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
25 strlcpy(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
27 strlcpy(s1+3, s2, sizeo
[all...]
/external/clang/test/SemaCXX/
H A Dstatic-assert.cpp29 S<int> s2; variable
/external/eigen/test/eigen2/
H A Deigen2_array.cpp31 s2 = ei_random<Scalar>(); local
36 VERIFY_IS_APPROX((m1*Scalar(2)).cwise() - s2, (m1+m1) - MatrixType::Constant(rows,cols,s2) );
38 m3.cwise() += s2;
39 VERIFY_IS_APPROX(m3, m1.cwise() + s2);
/external/eigen/test/
H A Dproduct_symm.cpp34 s2 = internal::random<Scalar>(); local
39 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs1),
40 rhs13 = (s1*m1) * (s2*rhs1));
45 VERIFY_IS_APPROX(rhs12 += (s1*m2).template selfadjointView<Upper>() * (s2*rhs1),
46 rhs13 += (s1*m1) * (s2*rhs1));
49 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Lower>() * (s2*rhs2.adjoint()),
50 rhs13 = (s1*m1) * (s2*rhs2.adjoint()));
53 VERIFY_IS_APPROX(rhs12 = (s1*m2).template selfadjointView<Upper>() * (s2*rhs2.adjoint()),
54 rhs13 = (s1*m1) * (s2*rhs2.adjoint()));
57 VERIFY_IS_APPROX(rhs12 = (s1*m2.adjoint()).template selfadjointView<Lower>() * (s2*rhs
[all...]
H A Dproduct_trmm.cpp32 s2 = internal::random<Scalar>(); local
46 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.transpose()), s1*triTr.conjugate() * (s2*ge_left.transpose()));
49 VERIFY_IS_APPROX( ge_xs.noalias() = (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.adjoint()), s1*triTr.conjugate() * (s2*ge_left.adjoint()));
53 VERIFY_IS_APPROX( (ge_xs_save + s1*triTr.conjugate() * (s2*ge_left.adjoint())).eval(), ge_xs.noalias() += (s1*mat.adjoint()).template triangularView<Mode>() * (s2*ge_left.adjoint()) );
/external/eigen/unsupported/Eigen/src/MoreVectorization/
H A DMathFunctions.h59 Packet4f s2=pmadd(s1, z1, p4f_asin3); local
60 Packet4f s3=pmadd(s2,z1, p4f_asin4);
73 Packet4f s2=pmadd(s1, z2, p4f_asin3); local
74 Packet4f s3=pmadd(s2,z2, p4f_asin4);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dmove_convert06.fail.cpp67 std::unique_ptr<A[], CDeleter<A>&> s2 = s; local
68 assert(s2.get() == p);
73 assert(s2.get_deleter().state() == d.state());
H A Dmove_convert12.fail.cpp67 std::unique_ptr<A[], CDeleter<A>&> s2 = s; local
68 assert(s2.get() == p);
73 assert(s2.get_deleter().state() == d.state());
H A Dmove_convert18.fail.cpp67 std::unique_ptr<A[], CDeleter<A>&> s2 = std::move(s); local
68 assert(s2.get() == p);
73 assert(s2.get_deleter().state() == d.state());
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dmove_convert06.fail.cpp67 std::unique_ptr<A, CDeleter<A>&> s2 = s; local
68 assert(s2.get() == p);
73 assert(s2.get_deleter().state() == d.state());
H A Dmove_convert06.pass.cpp67 std::unique_ptr<A, CDeleter<A>&> s2 = std::move(s); local
68 assert(s2.get() == p);
73 assert(s2.get_deleter().state() == d.state());
H A Dmove_convert12.fail.cpp67 std::unique_ptr<A, CDeleter<A>&> s2 = s; local
68 assert(s2.get() == p);
73 assert(s2.get_deleter().state() == d.state());
/external/lzma/CPP/Common/
H A DMyString.cpp85 int MyStringCollate(const wchar_t *s1, const wchar_t *s2)
88 LOCALE_USER_DEFAULT, SORT_STRINGSORT, s1, -1, s2, -1);
95 UnicodeStringToMultiByte(s2));
100 int MyStringCollate(const char *s1, const char *s2)
103 LOCALE_USER_DEFAULT, SORT_STRINGSORT, s1, -1, s2, -1));
106 int MyStringCollateNoCase(const char *s1, const char *s2)
109 LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT, s1, -1, s2, -1));
113 int MyStringCollateNoCase(const wchar_t *s1, const wchar_t *s2)
116 LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT, s1, -1, s2, -1);
123 UnicodeStringToMultiByte(s2));
154 MyStringCompare(const char *s1, const char *s2) argument
166 MyStringCompare(const wchar_t *s1, const wchar_t *s2) argument
178 MyStringCompareNoCase(const wchar_t *s1, const wchar_t *s2) argument
[all...]
/external/openssl/crypto/des/
H A Ddes3s.cpp40 unsigned long s1,s2,e1,e2; local
54 GetTSC(s2);
64 e1-s1,e2-s2,((e2-s2)-(e1-s1)));
/external/openssl/crypto/md4/
H A Dmd4s.cpp45 unsigned long s1,s2,e1,e2; local
69 GetTSC(s2);
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
69 GetTSC(s2);
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
63 GetTSC(s2);
70 e1-s1,e2-s2,(e1-s1)-(e2-s2));
/external/qemu/android/base/
H A DString_unittest.cpp53 String s2(s1);
54 EXPECT_EQ(s1.size(), s2.size());
55 EXPECT_STREQ(s1.c_str(), s2.c_str());
80 String s2("foo");
81 EXPECT_FALSE(s2.empty());
204 const char* s2; member in struct:android::base::__anon29043
226 EXPECT_EQ(comp.expected, s.compare(comp.s2))
228 << comp.s2 << "'";
236 size_t len2 = ::strlen(comp.s2);
237 EXPECT_EQ(comp.expected, s.compare(comp.s2, len
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSpannableStringTest.java39 UnderlineSpan s2 = new UnderlineSpan();
41 spanStr.setSpan(s2, 1, 10, 0);
43 assertBothSpans(s1, s2);
49 UnderlineSpan s2 = new UnderlineSpan();
51 spanStr.setSpan(s2, 1, 10, 0);
57 assertThat((UnderlineSpan) spans[0], sameInstance(s2));
63 UnderlineSpan s2 = new UnderlineSpan();
65 spanStr.setSpan(s2, 20, 30, 0);
70 assertBothSpans(s1, s2);
80 assertThat((UnderlineSpan) spans[0], sameInstance(s2));
123 assertBothSpans(URLSpan s1, UnderlineSpan s2) argument
[all...]
/external/zopfli/src/zopfli/
H A Dzlib_container.c33 unsigned s2 = 1 >> 16; local
40 s2 += s1;
44 s2 %= 65521;
47 return (s2 << 16) | s1;

Completed in 2722 milliseconds

1234567891011>>