HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 1 - 25 of 2471) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Misc/
error-limit.c 8 struct s2{}; struct
9 struct s2{}; struct
14 // CHECK-NOT: 9:8: error: redefinition of 's2'
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
assign3.pass.cpp 22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::assign(s2, 3, char(5)) == s2);
24 assert(s2[0] == char(5));
25 assert(s2[1] == char(5));
26 assert(s2[2] == char(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::copy(s2, s1, 3) == s2);
24 assert(s2[0] == char(1));
25 assert(s2[1] == char(2));
26 assert(s2[2] == char(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
assign3.pass.cpp 22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::assign(s2, 3, char(5)) == s2);
24 assert(s2[0] == char(5));
25 assert(s2[1] == char(5));
26 assert(s2[2] == char(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::copy(s2, s1, 3) == s2);
24 assert(s2[0] == char(1));
25 assert(s2[1] == char(2));
26 assert(s2[2] == char(3));
  /bionic/libc/upstream-openbsd/lib/libc/string/
strcmp.c 41 strcmp(const char *s1, const char *s2)
43 while (*s1 == *s2++)
46 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
strncmp.c 35 strncmp(const char *s1, const char *s2, size_t n)
41 if (*s1 != *s2++)
42 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
  /external/clang/test/Parser/
struct-recursion.c 6 struct s1 { struct s2 *A; };
7 struct s2 { struct s1 *B; }; struct
11 struct s2 b;
  /external/valgrind/main/none/tests/s390x/
insert.h 6 #define INSERT_REG_MEM(insn, s1, s2) \
14 : "d" (tmp), "Q" (s2) \
16 printf(#insn " %16.16lX <- %16.16lX = %16.16lX\n", s1, s2, tmp); \
19 #define INSERT_REG_IMM(insn, s1, s2) \
23 asm volatile( insn(2,s2) \
30 printf(#insn " %16.16lX <- %16.16lX = %16.16lX\n", s1, (unsigned long) 0x##s2, v); \
34 #define memsweep(i, s2) \
36 INSERT_REG_MEM(i, 0ul, s2); \
37 INSERT_REG_MEM(i, 1ul, s2); \
38 INSERT_REG_MEM(i, 0xfffful, s2); \
    [all...]
add.c 18 static void do_regmem_insns(unsigned long s2)
20 memsweep(a, s2, 0);
21 memsweep(ah, s2, 0);
22 memsweep(ag, s2, 0);
23 memsweep(agf, s2, 0);
24 memsweep(al, s2, 0);
25 memsweep(alg, s2, 0);
26 memsweep(agf, s2, 0);
27 memsweep(algf, s2, 0);
28 regsweep(ar, s2, 0)
    [all...]
sub.c 5 static void do_regmem_insns(unsigned long s2)
7 memsweep(s, s2, 0);
8 memsweep(sh, s2, 0);
9 memsweep(sg, s2, 0);
10 memsweep(sgf, s2, 0);
11 memsweep(sl, s2, 0);
12 memsweep(slg, s2, 0);
13 memsweep(sgf, s2, 0);
14 memsweep(slgf, s2, 0);
15 regsweep(sr, s2, 0)
    [all...]
  /external/libcxx/test/utilities/time/time.duration/time.duration.comparisons/
op_less.pass.cpp 41 std::chrono::seconds s2(3);
42 assert(!(s1 < s2));
43 assert(!(s1 > s2));
44 assert( (s1 <= s2));
45 assert( (s1 >= s2));
49 std::chrono::seconds s2(4);
50 assert( (s1 < s2));
51 assert(!(s1 > s2));
52 assert( (s1 <= s2));
53 assert(!(s1 >= s2));
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.comparisons/
op_less.pass.cpp 41 std::chrono::seconds s2(3);
42 assert(!(s1 < s2));
43 assert(!(s1 > s2));
44 assert( (s1 <= s2));
45 assert( (s1 >= s2));
49 std::chrono::seconds s2(4);
50 assert( (s1 < s2));
51 assert(!(s1 > s2));
52 assert( (s1 <= s2));
53 assert(!(s1 >= s2));
    [all...]
  /art/runtime/
strutil.h 26 bool operator()(const char* s1, const char* s2) const {
27 return strcmp(s1, s2) < 0;
33 bool operator()(const char* s1, const char* s2) const {
34 return strcmp(s1, s2) == 0;
  /external/chromium_org/third_party/cld/base/
string_util.h 15 // Compare the two strings s1 and s2 without regard to case using
16 // the current locale; returns 0 if they are equal, 1 if s1 > s2, and -1 if
17 // s2 > s1 according to a lexicographic comparison.
18 inline int strcasecmp(const char* s1, const char* s2) {
19 return _stricmp(s1, s2);
22 inline int strcasecmp(const char* s1, const char* s2) {
23 return ::strcasecmp(s1, s2);
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglstring.c 45 char *s2 = malloc(l + 1); local
46 if (s2)
47 strcpy(s2, s);
48 return s2;
  /external/mesa3d/src/egl/main/
eglstring.c 45 char *s2 = malloc(l + 1); local
46 if (s2)
47 strcpy(s2, s);
48 return s2;
  /bionic/libc/bionic/
strcoll_l.cpp 31 int strcoll_l(const char *s1, const char *s2, locale_t) {
32 return strcoll(s1, s2);
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
assign3.pass.cpp 23 char16_t s2[3] = {0}; local
24 assert(std::char_traits<char16_t>::assign(s2, 3, char16_t(5)) == s2);
25 assert(s2[0] == char16_t(5));
26 assert(s2[1] == char16_t(5));
27 assert(s2[2] == char16_t(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
23 char16_t s2[3] = {0}; local
24 assert(std::char_traits<char16_t>::copy(s2, s1, 3) == s2);
25 assert(s2[0] == char16_t(1));
26 assert(s2[1] == char16_t(2));
27 assert(s2[2] == char16_t(3));
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
assign3.pass.cpp 23 char32_t s2[3] = {0}; local
24 assert(std::char_traits<char32_t>::assign(s2, 3, char32_t(5)) == s2);
25 assert(s2[0] == char32_t(5));
26 assert(s2[1] == char32_t(5));
27 assert(s2[2] == char32_t(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
23 char32_t s2[3] = {0}; local
24 assert(std::char_traits<char32_t>::copy(s2, s1, 3) == s2);
25 assert(s2[0] == char32_t(1));
26 assert(s2[1] == char32_t(2));
27 assert(s2[2] == char32_t(3));
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
assign3.pass.cpp 22 wchar_t s2[3] = {0}; local
23 assert(std::char_traits<wchar_t>::assign(s2, 3, wchar_t(5)) == s2);
24 assert(s2[0] == wchar_t(5));
25 assert(s2[1] == wchar_t(5));
26 assert(s2[2] == wchar_t(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
22 wchar_t s2[3] = {0}; local
23 assert(std::char_traits<wchar_t>::copy(s2, s1, 3) == s2);
24 assert(s2[0] == wchar_t(1));
25 assert(s2[1] == wchar_t(2));
26 assert(s2[2] == wchar_t(3));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
assign3.pass.cpp 23 char16_t s2[3] = {0}; local
24 assert(std::char_traits<char16_t>::assign(s2, 3, char16_t(5)) == s2);
25 assert(s2[0] == char16_t(5));
26 assert(s2[1] == char16_t(5));
27 assert(s2[2] == char16_t(5));

Completed in 534 milliseconds

1 2 3 4 5 6 7 8 91011>>