HomeSort by relevance Sort by last modified time
    Searched defs:s2 (Results 426 - 450 of 1003) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGen/
const-init.c 21 union s2 { union
27 int g0 = (int)(&(((union s2 *) 0)->f0.f0) - 0);
ms_struct-bitfield.c 29 int s2 = sizeof(t2); variable
30 // CHECK: @s2 = global i32 2
31 // CHECK-ARM: @s2 = global i32 2
  /external/clang/test/CodeGenCXX/
x86_64-arguments.cpp 51 struct s2 { struct in namespace:PR7742
55 struct c2 : public s2 {};
  /external/clang/test/Sema/
atomic-ops.c 84 int *I, int **P, float *D, struct S *s1, struct S *s2) { struct
105 __atomic_load(s1, s2, memory_order_acquire);
115 __atomic_store_n(s1, *s2, memory_order_release); // expected-error {{must be a pointer to integer or pointer}}
118 __atomic_store(s1, s2, memory_order_release);
126 __atomic_exchange(s1, s2, s2, memory_order_seq_cst);
128 (int)__atomic_exchange(s1, s2, s2, memory_order_seq_cst); // expected-error {{operand of type 'void'}}
init.c 87 struct s1 s2 = { // expected-error {{variable has incomplete type 'struct s1'}} \ variable in typeref:struct:s1
  /external/clang/test/SemaCXX/
MicrosoftCompatibility.cpp 136 S s2; local
  /external/clang/test/SemaTemplate/
instantiate-declref.cpp 52 struct { U x, y; } s2; local
53 s1.x = s2.x; // expected-error{{incompatible}}
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 41 int internal_memcmp(const void* s1, const void* s2, uptr n) {
43 const char* t2 = (char*)s2;
108 char *s2 = (char*)InternalAlloc(len + 1); local
109 internal_memcpy(s2, s, len);
110 s2[len] = 0;
111 return s2;
114 int internal_strcmp(const char *s1, const char *s2) {
117 unsigned c2 = *s2;
121 s2++;
126 int internal_strncmp(const char *s1, const char *s2, uptr n)
    [all...]
  /external/deqp/executor/
xeTestLogWriter.cpp 209 deUint8 s2 = (numRead >= 3) ? data[srcNdx+2] : 0; local
216 d[2] = s_base64Table[((s1&0xF)<<2) | (s2>>6)];
217 d[3] = s_base64Table[s2&0x3F];
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 251 String s2 = handlers.toHuman(subPrefix, ""); local
255 annotateTo.annotate(amt2, s2);
258 printTo.println(s2);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegisterSpecSet.java 70 RegisterSpec s2 = otherSpecs[i]; local
72 if (s1 == s2) {
76 if ((s1 == null) || !s1.equals(s2)) {
  /external/e2fsprogs/e2fsck/
logfile.c 206 static FILE *save_output(const char *s0, const char *s1, const char *s2)
217 if (s2 && *s2 == 0)
218 s2 = 0;
221 if (!s0 && !s1 && !s2)
254 if (fd < 0 && s2)
255 fd = open(s2, O_WRONLY|O_CREAT|O_TRUNC, 0644);
285 struct string s, s1, s2; local
289 s.s = s1.s = s2.s = 0;
318 alloc_string(&s2, strlen(log_dir) + strlen(s.s) + 2)
    [all...]
  /external/eigen/test/
sparse_product.cpp 56 Scalar s2 = internal::random<Scalar>(); local
95 VERIFY_IS_APPROX(m4 = s2*m2*m3*s1, refMat4 = s2*refMat2*refMat3*s1);
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 404 DenseIndex s1,s2; local
405 s1 = 0; s2 = 1; // alternate rows in array a
417 a(s2,0) = a(s1,0)/ndu(pk+1,rk);
418 d = a(s2,0)*ndu(rk,pk);
429 a(s2,j) = (a(s1,j)-a(s1,j-1))/ndu(pk+1,rk+j);
430 d += a(s2,j)*ndu(rk+j,pk);
435 a(s2,k) = -a(s1,k-1)/ndu(pk+1,r);
436 d += a(s2,k)*ndu(r,pk);
440 j = s1; s1 = s2; s2 = j; // Switch row
    [all...]
  /external/elfutils/0.153/libdw/
memory-access.h 188 int16_t s2; member in union:unaligned
220 return up->s2;
  /external/icu/icu4c/source/i18n/
scriptset.cpp 247 icu::ScriptSet *s2 = static_cast<icu::ScriptSet *>(key2.pointer); local
248 return (*s1 == *s2);
  /external/icu/icu4c/source/test/cintltst/
spooftest.c 482 char s2[200]; local
486 u_strToUTF8(s2, sizeof(s2), NULL, scMixed, -1, &status);
488 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
493 u_strToUTF8(s2, sizeof(s2), NULL, scLatin, -1, &status);
495 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
500 u_strToUTF8(s2, sizeof(s2), NULL, lll_Latin_b, -1, &status);
502 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status)
    [all...]
  /external/icu/icu4c/source/test/intltest/
astrotst.cpp 315 UnicodeString s1, s2, s3, s4, s5; local
319 ", Sunrise: " + df_dt->format(sunrise, s2) +
324 ", Sunrise: " + df_dt->format(sunrise,s2) +
327 s1.remove(); s2.remove(); s3.remove(); s4.remove(); s5.remove();
330 ", Sunset: " + df_dt->format(sunset,s2) +
335 ", Sunset: " + df_dt->format(sunset,s2) +
340 ", Sunrise: " + df_dt->format(sunrise,s2) +
dcfmapts.cpp 335 UnicodeString s2; local
336 s2 = pat.toPattern(s2);
337 logln((UnicodeString)"Extracted pattern is " + s2);
338 if(s2 != p1) {
thcoll.cpp 272 UnicodeString s1, s2; local
274 parseChars(s2, tests[i+2]);
276 doTest(&c, s1, s2, expect);
279 int32_t result = c.compare(s1, s2);
285 + " , " + IntlTest::prettify(s2, t2)
290 c.getCollationKey(s2, k2, status);
303 c.getCollationKey(s2, k2, status);
314 + ").compareTo(key(" + IntlTest::prettify(s2, t2)
  /external/iproute2/ip/
iptunnel.c 308 char s2[1024]; local
319 p->iph.saddr ? rt_addr_n2a(AF_INET, 4, &p->iph.saddr, s2, sizeof(s2)) : "any");
  /external/libedit/src/
filecomplete.c 344 const char *s2 = ((const char * const *)i2)[0]; local
346 return strcasecmp(s1, s2);
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans4_dspr2.c 323 int s0, s1, s2, s3, s4, s5, s6, s7; local
338 s2 = sinpi_3_9 * x1;
348 x3 = s2;
352 s2 = x2;
361 output[2] = dct_const_round_shift(s2);
vp9_itrans8_dspr2.c 472 int s0, s1, s2, s3, s4, s5, s6, s7; local
493 s2 = cospi_10_64 * x2 + cospi_22_64 * x3;
502 x2 = ROUND_POWER_OF_TWO((s2 + s6), DCT_CONST_BITS);
506 x6 = ROUND_POWER_OF_TWO((s2 - s6), DCT_CONST_BITS);
512 s2 = x2;
519 x0 = s0 + s2;
521 x2 = s0 - s2;
529 s2 = cospi_16_64 * (x2 + x3);
534 x2 = ROUND_POWER_OF_TWO((s2), DCT_CONST_BITS);
    [all...]
vp9_mbloop_loopfilter_dspr2.c 330 uint8_t *s1, *s2, *s3, *s4; local
358 s2 = s + pitch;
359 s3 = s2 + pitch;
365 "lw %[p1], -4(%[s2]) \n\t"
369 "lw %[q2], (%[s2]) \n\t"
375 : [s1] "r" (s1), [s2] "r" (s2), [s3] "r" (s3), [s4] "r" (s4)
578 "sb %[p2_l], -3(%[s2]) \n\t"
579 "sb %[p1_l], -2(%[s2]) \n\t"
580 "sb %[p0_l], -1(%[s2]) \n\t
    [all...]

Completed in 1066 milliseconds

<<11121314151617181920>>