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

1234567891011>>

/external/clang/test/CXX/dcl.decl/dcl.init/
H A Dp6.cpp24 struct s2 { struct
28 template<> const struct s0 s2<int>::foo; // okay
/external/clang/test/CodeGen/
H A Dsanitize-init-order.cpp19 PODWithDtor s2; variable
/external/clang/test/CodeGenCXX/
H A Dreference-init.cpp25 const int &s2 = s.bitfield; variable
/external/clang/test/FixIt/
H A Dfixit-vexing-parse.cpp39 S s2, // expected-note {{change this ',' to a ';' to call 'F2'}} local
/external/clang/test/Index/
H A Dannotate-tokens.cpp18 void test3(S2 s2) { argument
19 s2->f();
127 // CHECK: Identifier: "s2" [18:15 - 18:17] ParmDecl=s2:18:15 (Definition)
130 // CHECK: Identifier: "s2" [19:3 - 19:5] DeclRefExpr=s2:18:15
/external/clang/test/SemaTemplate/
H A Dself-comparison.cpp44 S2<1, 1> s2; s2.foo<void>(); local
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stackdepot_test.cc64 uptr s2[] = {1, 2, 3, 4, 8, 9}; local
65 u32 i2 = StackDepotPut(s2, ARRAY_SIZE(s2));
71 uptr s2[] = {7, 1, 3, 0}; local
76 ids[1] = StackDepotPut(s2, ARRAY_SIZE(s2));
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_sync_test.cc62 SyncVar *s2 = m->GetOrCreateAndLock(thr, 0, (uptr)&block[1], false); local
63 EXPECT_NE(s2, (SyncVar*)0);
64 EXPECT_EQ(s2->addr, (uptr)&block[1]);
65 s2->mtx.ReadUnlock();
69 s2 = m->GetIfExistsAndLock((uptr)&block[1]);
70 EXPECT_EQ(s2, (SyncVar*)0);
83 SyncVar *s2 = m->GetOrCreateAndLock(thr, 0, (uptr)&block1[1], true); local
84 s2->mtx.Unlock();
98 s2 = m->GetIfExistsAndLock((uptr)&block1[1]);
99 EXPECT_EQ(s2, (SyncVa
[all...]
/external/compiler-rt/test/msan/Linux/
H A Dsunrpc_bytes.cc29 char s2[20]; local
30 char *sp2 = s2;
32 res = xdr_bytes(&xdrs, &sp2, &sz2, sizeof(s2));
35 assert(strcmp(s, s2) == 0);
/external/eigen/Eigen/src/Geometry/
H A DEulerAngles.h59 Scalar s2 = Vector2(coeff(j,i), coeff(k,i)).norm(); local
60 res[1] = -atan2(s2, coeff(i,i));
64 Scalar s2 = Vector2(coeff(j,i), coeff(k,i)).norm(); local
65 res[1] = atan2(s2, coeff(i,i));
72 // c2 s1.s2 c1.s2 1 0 0
74 // -s2 s1.c2 c1.c2 0 -s3 c3
/external/eigen/test/
H A Deigen2support.cpp26 s2 = internal::random<Scalar>(); local
31 VERIFY_IS_APPROX((m1*Scalar(2)).cwise() - s2, (m1+m1) - MatrixType::Constant(rows,cols,s2) );
33 m3.cwise() += s2;
34 VERIFY_IS_APPROX(m3, m1.cwise() + s2);
/external/fdlibm/
H A Ds_atan.c92 double w,s1,s2,z; local
128 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
129 if (id<0) return x - x*(s1+s2);
131 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
/external/freetype/src/gzip/
H A Dadler32.c14 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
27 unsigned long s2 = (adler >> 16) & 0xffff; local
42 s2 += s1;
45 s2 %= BASE;
47 return (s2 << 16) | s1;
/external/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/
H A Dassign_move.pass.cpp298 std::unordered_multimap<int, int> s2; local
299 s2 = std::move(s1);
301 s2.erase(i);
302 assert(s2.size() == 2);
H A Dmove.pass.cpp236 std::unordered_multimap<int, int> s2 = std::move(s1); local
238 s2.erase(i);
239 assert(s2.size() == 2);
/external/libcxx/test/strings/basic.string/string.modifiers/string_insert/
H A Diter_size_char.pass.cpp176 std::string s2; local
177 s.insert(s2.begin(), 1, 'a');
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
H A Dmove03.fail.cpp49 std::unique_ptr<A, Deleter> s2; local
50 s2 = s;
51 assert(s2.get() == p);
H A Dmove04.fail.cpp49 std::unique_ptr<A, Deleter> s2; local
50 s2 = s;
51 assert(s2.get() == p);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Dmove01.pass.cpp55 std::unique_ptr<A[]> s2 = std::move(s); local
56 assert(s2.get() == p);
64 std::unique_ptr<A[], Deleter<A[]> > s2 = std::move(s); local
65 assert(s2.get() == p);
68 assert(s2.get_deleter().state() == 5);
76 std::unique_ptr<A[], NCDeleter&> s2 = std::move(s); local
77 assert(s2.get() == p);
81 assert(s2.get_deleter().state() == d.state());
H A Dmove03.fail.cpp49 std::unique_ptr<A[], Deleter> s2 = s; local
50 assert(s2.get() == p);
H A Dmove04.fail.cpp49 std::unique_ptr<A[], Deleter> s2 = s; local
50 assert(s2.get() == p);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A Dmove03.fail.cpp49 std::unique_ptr<A, Deleter> s2; local
50 s2 = s;
51 assert(s2.get() == p);
H A Dmove04.fail.cpp49 std::unique_ptr<A, Deleter> s2; local
50 s2 = s;
51 assert(s2.get() == p);
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dmove03.fail.cpp49 std::unique_ptr<A, Deleter> s2 = s; local
50 assert(s2.get() == p);
H A Dmove04.fail.cpp49 std::unique_ptr<A, Deleter> s2 = s; local
50 assert(s2.get() == p);

Completed in 624 milliseconds

1234567891011>>