| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
| lp_tile_image.c | 93 const uint32_t *s2 = s1 + src_stride; local 94 const uint32_t *s3 = s2 + src_stride; 98 dst[8] = s2[0]; dst[9] = s2[1]; dst[12] = s2[2]; dst[13] = s2[3]; 113 const uint16_t *s2 = s1 + src_stride; local 114 const uint16_t *s3 = s2 + src_stride; 118 dst[8] = s2[0]; dst[9] = s2[1]; dst[12] = s2[2]; dst[13] = s2[3] [all...] |
| /external/chromium_org/third_party/openssl/openssl/crypto/aes/ |
| aes_core.c | 785 u32 s0, s1, s2, s3, t0, t1, t2, t3; local 976 u32 s0, s1, s2, s3, t0, t1, t2, t3; local [all...] |
| /external/chromium_org/third_party/openssl/openssl/ssl/ |
| s2_lib.c | 316 return SSL_in_init(s) ? 0 : s->s2->ract_data_length; 321 SSL2_STATE *s2; local 323 if ((s2=OPENSSL_malloc(sizeof *s2)) == NULL) goto err; 324 memset(s2,0,sizeof *s2); 330 if ((s2->rbuf=OPENSSL_malloc( 334 if ((s2->wbuf=OPENSSL_malloc( 336 s->s2=s2; 352 SSL2_STATE *s2; local 367 SSL2_STATE *s2; local [all...] |
| /external/chromium_org/third_party/skia/tests/ |
| PointTest.cpp | 44 SkScalar s2 = SkPoint::Length(x, y); local 47 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
|
| /external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
| nm-pdb.c | 77 const SYM *s2 = (const SYM *)_s2; local 79 if (s1->addr < s2->addr) 81 if (s1->addr > s2->addr)
|
| /external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
| nm-pdb.c | 77 const SYM *s2 = (const SYM *)_s2; local 79 if (s1->addr < s2->addr) 81 if (s1->addr > s2->addr)
|
| /external/clang/test/Analysis/ |
| array-struct.c | 68 struct s2; 70 void g2(struct s2 *p); 74 struct s2 *p = __builtin_alloca(10); 111 struct s2 { struct in struct:s1
|
| /external/clang/test/CodeGen/ |
| packed-arrays.c | 14 struct s2 { struct 31 int align2 = __alignof(struct s2); 41 int align2_x = __alignof(((struct s2*) 0)->x); 50 int align2_x0 = __alignof(((struct s2*) 0)->x[0]); 109 int f2_a(struct s2 *a) { 112 int f2_b(struct s2 *a) { 115 int f2_c(struct s2 *a) { 118 int f2_d(struct s2 *a) {
|
| regparm-struct.c | 19 struct s2 { struct 23 __attribute__((regparm(3))) void f3(int a, int b, struct s2 c, int d); 26 struct s2 x = {43, 44}; 29 __attribute__((regparm(3))) void f4(int a, struct s2 b, int c); 32 struct s2 x = {42, 43};
|
| /external/clang/test/Headers/ |
| stddefneeds.cpp | 22 size_t s2; variable
|
| /external/clang/test/Sema/ |
| offsetof.c | 33 struct s2 { int a; }; struct 34 int v2 = (int)(&((struct s2 *) 0)->a) == 0 ? 0 : f();
|
| type-spec-struct-union.c | 9 struct S2 *x; 14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) { 15 if (s1->u1.x == s2) return 1; 21 struct S2 { int x; } *s2 = 0; local 22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */
|
| /external/clang/test/SemaCXX/ |
| warn-bad-memaccess.cpp | 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n); 5 extern "C" void *memcpy(void *s1, const void *s2, unsigned n); 6 extern "C" void *memcmp(void *s1, const void *s2, unsigned n); 15 struct S2 { int x; } s2; variable in typeref:struct:S2 121 memset(&s2, 0, sizeof s2);
|
| warn-reorder-ctor-initialization.cpp | 10 : s2(1), // expected-warning {{field 's2' will be initialized after field 's1'}} 17 int s2; member in class:complex 91 struct S2: virtual S1 { }; 94 struct S4: virtual S3, S2 { 95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
|
| /external/compiler-rt/lib/asan/tests/ |
| asan_str_test.cc | 285 char *s2 = MallocAndMemsetString(size, fill); local 287 s2[size - 1] = '\0'; 289 Ident(StrCmp(s1, s2)); 290 Ident(StrCmp(s1, s2 + size - 1)); 291 Ident(StrCmp(s1 + size - 1, s2 + size - 1)); 293 s2[size - 1] = 'x'; 294 Ident(StrCmp(s1, s2)); 296 EXPECT_DEATH(Ident(StrCmp)(s1 - 1, s2), LeftOOBReadMessage(1)); 297 EXPECT_DEATH(Ident(StrCmp)(s1, s2 - 1), LeftOOBReadMessage(1)); 298 EXPECT_DEATH(Ident(StrCmp)(s1 + size, s2), RightOOBReadMessage(0)) 322 char *s2 = MallocAndMemsetString(size); local [all...] |
| /external/deqp/framework/qphelper/ |
| qpXmlWriter.c | 280 deUint8 s2 = (numRead >= 3) ? data[srcNdx+2] : 0; local 287 d[2] = s_base64Table[((s1&0xF)<<2) | (s2>>6)]; 288 d[3] = s_base64Table[s2&0x3F];
|
| /external/e2fsprogs/lib/ext2fs/ |
| ismounted.c | 252 char *s2; local 265 s2 = mp->f_mntfromname; 266 if (strncmp(_PATH_DEV, s2, len) == 0) { 267 s2 += len - 1; 268 *s2 = 'r'; 270 if (strcmp(s1, s2) == 0 || strcmp(s1, &s2[1]) == 0) {
|
| /external/eigen/test/ |
| array_for_matrix.cpp | 30 s2 = internal::random<Scalar>(); local 35 VERIFY_IS_APPROX(((m1*Scalar(2)).array() - s2).matrix(), (m1+m1) - MatrixType::Constant(rows,cols,s2) ); 37 m3.array() += s2; 38 VERIFY_IS_APPROX(m3, (m1.array() + s2).matrix());
|
| basicstuff.cpp | 142 s2 = internal::random<Scalar>(); local 146 numext::real_ref(s1) = numext::real(s2); 147 numext::imag_ref(s1) = numext::imag(s2); 148 VERIFY(internal::isApprox(s1, s2, NumTraits<RealScalar>::epsilon())); 149 // extended precision in Intel FPUs means that s1 == s2 in the line above is not guaranteed.
|
| product_extra.cpp | 38 s2 = internal::random<Scalar>(), local 47 VERIFY_IS_APPROX(m3.noalias() = (s2 * m1.adjoint() * s1) * m2, (s2 * m1.adjoint() * s1).eval() * m2); 48 VERIFY_IS_APPROX(m3.noalias() = (-m1*s2) * s1*m2.adjoint(), (-m1*s2).eval() * (s1*m2.adjoint()).eval()); 56 VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 * vc2), 57 (-m1.conjugate()*s2).eval() * (s1 * vc2).eval()); 58 VERIFY_IS_APPROX((-m1 * s2) * (s1 * vc2.conjugate()), 59 (-m1*s2).eval() * (s1 * vc2.conjugate()).eval()); 60 VERIFY_IS_APPROX((-m1.conjugate() * s2) * (s1 * vc2.conjugate()) [all...] |
| /external/icu/icu4c/source/test/intltest/ |
| nmfmtrt.cpp | 238 UnicodeString s, s2, temp; local 255 s2 = fmt->format(n.getDouble(), s2); 257 s2 = fmt->format(n.getLong(), s2); 260 logln(/*n.getString(temp) +*/ " F> " + escape(s2)); 263 if (s != s2) { 264 errln("*** STRING ERROR \"" + escape(s) + "\" != \"" + escape(s2) + "\""); 294 escape(s2));
|
| /external/iproute2/ip/ |
| link_gre.c | 272 char s2[64]; local 301 const char *n = if_indextoname(link, s2); 335 inet_ntop(AF_INET, RTA_DATA(tb[IFLA_GRE_IKEY]), s2, sizeof(s2)); 336 fprintf(f, "ikey %s ", s2); 340 inet_ntop(AF_INET, RTA_DATA(tb[IFLA_GRE_OKEY]), s2, sizeof(s2)); 341 fprintf(f, "okey %s ", s2);
|
| /external/jemalloc/test/include/test/ |
| math.h | 224 double e, aa, xx, c, ch, a, q, p1, p2, t, x, b, s1, s2, s3, s4, s5, s6; local 284 s2 = (420.0 + a * (735.0 + a * (966.0 + a * (1141.0 + 1278.0 * 291 ch += t * (1.0 + 0.5 * t * s1 - b * c * (s1 - b * (s2 - b * (s3
|
| /external/libvpx/libvpx/vp8/encoder/arm/neon/ |
| denoising_neon.c | 142 int s2 = vgetq_lane_s8(v_sum_diff, 8) + local 150 sum_diff += s0 + s1+ s2 + s3;
|
| /external/libvpx/libvpx/vp9/common/mips/dspr2/ |
| vp9_loopfilter_filters_dspr2.c | 33 uint8_t *sm1, *s0, *s1, *s2, *s3, *s4, *s5, *s6; local 61 s2 = s - pitch; 69 "lw %[p2], (%[s2]) \n\t" 74 : [s1] "r" (s1), [s2] "r" (s2), [s3] "r" (s3), [s4] "r" (s4) 102 "sw %[p2], (%[s2]) \n\t" 108 [s1] "r" (s1), [s2] "r" (s2), [s3] "r" (s3), [s4] "r" (s4) 126 uint8_t *s1, *s2, *s3, *s4; local 151 s2 = s + pitch [all...] |