HomeSort by relevance Sort by last modified time
    Searched defs:s2 (Results 251 - 275 of 586) sorted by null

<<11121314151617181920>>

  /external/clang/test/Analysis/
reference.cpp 74 struct S2 {
83 S2 s2 = { a }; local
86 if (s2.x != a) return;
90 clang_analyzer_eval(s2.x[0] == 42); // expected-warning{{TRUE}}
  /external/clang/test/CXX/class/class.union/
p1.cpp 80 struct s2 : VirtualBase { // expected-note {{because the function selected to copy base class of type 'VirtualBase' is not trivial}} struct in union:U3
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 27 struct s2 { struct
43 struct S2 {} constexpr; // expected-error {{struct cannot be marked constexpr}}
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p3-0x.cpp 28 struct S2 {
33 S2 s21 = { 1, 2, 3.0 };
34 S2 s22 { 1.0, 2, 3 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override}}
35 S2 s23 { };
46 S s2 = { 1, 2, 3 }; member in namespace:bullet4_example1
65 S s2 { 1.0, 2, 3 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override}}
  /external/clang/test/CodeGen/
const-init.c 21 union s2 { union
27 int g0 = (int)(&(((union s2 *) 0)->f0.f0) - 0);
  /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 85 int *I, int **P, float *D, struct S *s1, struct S *s2) { struct
106 __atomic_load(s1, s2, memory_order_acquire);
116 __atomic_store_n(s1, *s2, memory_order_release); // expected-error {{must be a pointer to integer or pointer}}
119 __atomic_store(s1, s2, memory_order_release);
127 __atomic_exchange(s1, s2, s2, memory_order_seq_cst);
129 (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/SemaTemplate/
instantiate-declref.cpp 52 struct { U x, y; } s2; local
53 s1.x = s2.x; // expected-error{{incompatible}}
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 272 const unsigned char *s2 = (const unsigned char*)a2; local
276 c2 = s2[i];
280 ASAN_READ_RANGE(s2, Min(i + 1, size));
405 INTERCEPTOR(int, strcmp, const char *s1, const char *s2) {
406 if (!asan_inited) return internal_strcmp(s1, s2);
408 return REAL(strcmp)(s1, s2);
415 c2 = (unsigned char)s2[i];
419 ASAN_READ_RANGE(s2, i + 1);
478 INTERCEPTOR(int, strcasecmp, const char *s1, const char *s2) {
484 c2 = (unsigned char)s2[i]
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 30 int internal_memcmp(const void* s1, const void* s2, uptr n) {
32 const char* t2 = (char*)s2;
87 char *s2 = (char*)InternalAlloc(len + 1); local
88 internal_memcpy(s2, s, len);
89 s2[len] = 0;
90 return s2;
93 int internal_strcmp(const char *s1, const char *s2) {
96 unsigned c2 = *s2;
100 s2++;
105 int internal_strncmp(const char *s1, const char *s2, uptr n)
    [all...]
  /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/eigen/unsupported/Eigen/src/Splines/
Spline.h 394 DenseIndex s1,s2; local
395 s1 = 0; s2 = 1; // alternate rows in array a
407 a(s2,0) = a(s1,0)/ndu(pk+1,rk);
408 d = a(s2,0)*ndu(rk,pk);
419 a(s2,j) = (a(s1,j)-a(s1,j-1))/ndu(pk+1,rk+j);
420 d += a(s2,j)*ndu(rk+j,pk);
425 a(s2,k) = -a(s1,k-1)/ndu(pk+1,r);
426 d += a(s2,k)*ndu(r,pk);
430 j = s1; s1 = s2; s2 = j; // Switch row
    [all...]
  /external/grub/stage2/
md5.c 62 static char s2[4] = { 5, 9, 14, 20 }; variable
117 tmp = ROTATE_LEFT (tmp, s2[i & 3]);
  /external/icu4c/test/cintltst/
spooftest.c 479 char s2[200]; local
483 u_strToUTF8(s2, sizeof(s2), NULL, scMixed, -1, &status);
485 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
490 u_strToUTF8(s2, sizeof(s2), NULL, scLatin, -1, &status);
492 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status);
497 u_strToUTF8(s2, sizeof(s2), NULL, lll_Latin_b, -1, &status);
499 checkResults = uspoof_areConfusableUTF8(sc, s1, -1, s2, -1, &status)
    [all...]
  /external/icu4c/test/intltest/
astrotst.cpp 317 UnicodeString s1, s2, s3, s4, s5; local
321 ", Sunrise: " + df_dt->format(sunrise, s2) +
326 ", Sunrise: " + df_dt->format(sunrise,s2) +
329 s1.remove(); s2.remove(); s3.remove(); s4.remove(); s5.remove();
332 ", Sunset: " + df_dt->format(sunset,s2) +
337 ", Sunset: " + df_dt->format(sunset,s2) +
342 ", Sunrise: " + df_dt->format(sunrise,s2) +
dcfmapts.cpp 308 UnicodeString s2; local
309 s2 = pat.toPattern(s2);
310 logln((UnicodeString)"Extracted pattern is " + s2);
311 if(s2 != p1) {
itspoof.cpp 118 UnicodeString s2 = UnicodeString("\\u0441\\u0445\\u0455").unescape(); // Cyrillic "cxs" local
119 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status);
239 UnicodeString s2("A long string that wi11 overflow stack buffers. A long string that will overflow stack buffers. "
241 TEST_ASSERT_EQ(USPOOF_SINGLE_SCRIPT_CONFUSABLE, uspoof_areConfusableUnicodeString(sc, s1, s2, &status));
255 UnicodeString s2 = UnicodeString("abcd\\u0301\\u0302\\u0301ef").unescape(); local
256 TEST_ASSERT_EQ(USPOOF_INVISIBLE, uspoof_checkUnicodeString(sc, s2, &position, &status));
thcoll.cpp 271 UnicodeString s1, s2; local
273 parseChars(s2, tests[i+2]);
275 doTest(&c, s1, s2, expect);
278 int32_t result = c.compare(s1, s2);
284 + " , " + IntlTest::prettify(s2, t2)
289 c.getCollationKey(s2, k2, status);
302 c.getCollationKey(s2, k2, status);
313 + ").compareTo(key(" + IntlTest::prettify(s2, t2)
  /external/iproute2/ip/
iptunnel.c 308 char s2[1024]; local
323 p->iph.saddr ? rt_addr_n2a(AF_INET, 4, &p->iph.saddr, s2, sizeof(s2)) : "any");
  /external/kernel-headers/original/asm-mips/
regdef.h 38 #define s2 $18 macro
81 #define s2 $18 macro
  /external/linux-tools-perf/util/
help.c 257 const char *s1 = (*c1)->name, *s2 = (*c2)->name; local
260 return l1 != l2 ? l1 - l2 : strcmp(s1, s2);
  /external/llvm/unittests/ADT/
HashingTest.cpp 351 const size_t s1 = 1024, s2 = 8888, s3 = 9000000; local
353 const size_t arr2[] = { s1, s2, s3 };
355 hash_combine(s1, s2, s3));
356 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(s1, s2, d3));
357 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(s1, d2, s3));
358 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(d1, s2, s3));
359 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(d1, d2, s3));
360 EXPECT_EQ(hash_combine(s1, s2, s3), hash_combine(d1, d2, d3))
    [all...]
  /external/opencv/cv/src/
cvmatchcontours.cpp 233 char s1, s2; local
286 s1 = s2 = 0;
327 s2 = ptr21[j]->sign;
341 if( s1 != s2 )

Completed in 951 milliseconds

<<11121314151617181920>>