| /external/clang/test/CodeGen/ |
| ppc64-struct-onefloat.c | 5 typedef struct s2 { double d; } Sd; struct 13 // CHECK: %b = alloca %struct.s2, align 8 18 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s2* %b, i32 0, i32 0 24 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s2* %{{[a-zA-Z0-9.]+}}, i32 0, i32 0 40 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s2* %p2, i32 0, i32 0 46 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s2* %{{[a-zA-Z0-9.]+}}, i32 0, i32 0
|
| x86_32-arguments-win32.c | 13 struct s2 { struct 17 struct s2 f2_1(void) { while (1) {} }
|
| /external/clang/test/CodeGenCXX/ |
| global-array-destruction.cpp | 22 S s2; variable
|
| /external/clang/test/Sema/ |
| pragma-align-mac68k.c | 23 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];
|
| warn-strlcpycat-size.c | 9 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, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the sour (…) [all...] |
| warn-strncat-size.c | 16 char *strncat(char *restrict s1, const char *restrict s2, size_t n); 24 char s2[200]; variable 41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}} 42 strncat(s1+3, s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} 43 strncat(s4.f1, s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
|
| /external/clang/test/SemaCXX/ |
| static-assert.cpp | 29 S<int> s2; variable
|
| warn-unused-result.cpp | 31 S *s2 = g2(); local
|
| /external/eigen/test/eigen2/ |
| eigen2_array.cpp | 31 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/ |
| product_symm.cpp | 34 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*rhs2.adjoint()) [all...] |
| /external/eigen/unsupported/Eigen/src/MoreVectorization/ |
| MathFunctions.h | 59 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/icu/icu4c/source/test/intltest/ |
| sdtfmtts.cpp | 221 UnicodeString s2; local 222 s2 = pat.toPattern(s2); 223 logln("Extracted pattern is " + s2); 224 if(s2 != p1) {
|
| /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
| move01.pass.cpp | 111 std::unique_ptr<A> s2 = std::move(s); local 112 assert(s2.get() == p); 120 std::unique_ptr<A, Deleter<A> > s2 = std::move(s); local 121 assert(s2.get() == p); 124 assert(s2.get_deleter().state() == 5); 132 std::unique_ptr<A, CDeleter&> s2 = std::move(s); local 133 assert(s2.get() == p); 137 assert(s2.get_deleter().state() == d.state());
|
| move_convert11.fail.cpp | 107 std::unique_ptr<A, Deleter<A> > s2 = s; local 108 assert(s2.get() == p); 112 assert(s2.get_deleter().state() == 5);
|
| /external/libvpx/libvpx/vp9/common/mips/dspr2/ |
| vp9_loopfilter_masks_dspr2.h | 35 uint32_t s1, s2, s3; local 110 "or %[s2], %[r_k], %[c] \n\t" 113 "shrl.qb %[s2], %[s2], 1 \n\t" 114 "addu_s.qb %[s1], %[s2], %[s3] \n\t" 120 "pick.qb %[s2], $0, %[ones] \n\t" 123 [s2] "=&r" (s2), [r] "+r" (r), [s3] "=&r" (s3) 129 *mask = s2; 143 uint32_t s1, s2, s3 local [all...] |
| /external/openssl/crypto/md4/ |
| md4s.cpp | 45 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/ |
| md5s.cpp | 45 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/ |
| rc4s.cpp | 41 unsigned long s1,s2,e1,e2; local 63 GetTSC(s2); 70 e1-s1,e2-s2,(e1-s1)-(e2-s2));
|
| /external/qemu/android/base/ |
| String_unittest.cpp | 53 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::__anon32761 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, len2) [all...] |
| /frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
| pred_lt.cpp | 278 Word32 s2; local 328 s2 = 0x00004000L; 332 s2 += ((Word32) * (pX3--)) * *(pC1); 335 s2 += ((Word32) * (pX2)) * *(pC1++); 336 s2 += ((Word32) * (pX3--)) * *(pC1); 339 s2 += ((Word32) * (pX2)) * *(pC1++); 344 *(p_exc++) = (Word16)(s2 >> 15);
|
| /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
| calc_en.cpp | 278 Word32 s2; /* Intermediate energy accumulator */ local 293 s2 = 0; 310 s2 = amrnb_fxp_mac_16_by_16bb((Word32) tmp2, (Word32) tmp2, s2); /* Compute ltp excitation energy */ 322 s2 = s2 << 1; 344 if (s2 & MIN_32) 346 s2 = MAX_32; 350 exp = norm_l(s2); 351 frac_en[1] = (Word16)(L_shl(s2, exp, pOverflow) >> 16) 608 Word32 s2; \/* Intermediate energy accumulator *\/ local [all...] |
| cor_h.cpp | 280 Word32 s2; local 382 s2 = 0; 393 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (p_h2++), (Word32) * (p_h), s2); 396 tmp11 = (Word16)((s2 + 0x00004000L) >> 15);
|
| /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
| vp9_loopfilter_masks_dspr2.h | 35 uint32_t s1, s2, s3; local 110 "or %[s2], %[r_k], %[c] \n\t" 113 "shrl.qb %[s2], %[s2], 1 \n\t" 114 "addu_s.qb %[s1], %[s2], %[s3] \n\t" 120 "pick.qb %[s2], $0, %[ones] \n\t" 123 [s2] "=&r" (s2), [r] "+r" (r), [s3] "=&r" (s3) 129 *mask = s2; 143 uint32_t s1, s2, s3 local [all...] |
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
| move01.pass.cpp | 111 std::unique_ptr<A> s2 = std::move(s); local 112 assert(s2.get() == p); 120 std::unique_ptr<A, Deleter<A> > s2 = std::move(s); local 121 assert(s2.get() == p); 124 assert(s2.get_deleter().state() == 5); 132 std::unique_ptr<A, CDeleter&> s2 = std::move(s); local 133 assert(s2.get() == p); 137 assert(s2.get_deleter().state() == d.state());
|
| move_convert11.fail.cpp | 107 std::unique_ptr<A, Deleter<A> > s2 = s; local 108 assert(s2.get() == p); 112 assert(s2.get_deleter().state() == 5);
|