HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 1 - 25 of 3899) 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/strace/tests/
ppoll.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll -s2); do not edit.
4 run_strace_match_diff -s2
setgroups.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (setgroups -s2 -a17); do not edit.
4 run_strace_match_diff -s2 -a17
setgroups32.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (setgroups32 -s2 -a19); do not edit.
4 run_strace_match_diff -s2 -a19
  /external/strace/tests-m32/
ppoll.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll -s2); do not edit.
4 run_strace_match_diff -s2
setgroups.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (setgroups -s2 -a17); do not edit.
4 run_strace_match_diff -s2 -a17
setgroups32.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (setgroups32 -s2 -a19); do not edit.
4 run_strace_match_diff -s2 -a19
  /external/strace/tests-mx32/
ppoll.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ppoll -s2); do not edit.
4 run_strace_match_diff -s2
setgroups.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (setgroups -s2 -a17); do not edit.
4 run_strace_match_diff -s2 -a17
setgroups32.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (setgroups32 -s2 -a19); do not edit.
4 run_strace_match_diff -s2 -a19
  /prebuilts/ndk/r11/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));
  /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/llvm/test/MC/AMDGPU/
sopc.s 9 s_cmp_eq_i32 s1, s2
10 // GCN: s_cmp_eq_i32 s1, s2 ; encoding: [0x01,0x02,0x00,0xbf]
12 s_cmp_lg_i32 s1, s2
13 // GCN: s_cmp_lg_i32 s1, s2 ; encoding: [0x01,0x02,0x01,0xbf]
15 s_cmp_gt_i32 s1, s2
16 // GCN: s_cmp_gt_i32 s1, s2 ; encoding: [0x01,0x02,0x02,0xbf]
18 s_cmp_ge_i32 s1, s2
19 // GCN: s_cmp_ge_i32 s1, s2 ; encoding: [0x01,0x02,0x03,0xbf]
21 s_cmp_lt_i32 s1, s2
22 // GCN: s_cmp_lt_i32 s1, s2 ; encoding: [0x01,0x02,0x04,0xbf
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pystrcmp.c 7 PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size)
12 (tolower((unsigned)*s1) == tolower((unsigned)*s2))) {
13 if (!*s1++ || !*s2++)
16 return tolower((unsigned)*s1) - tolower((unsigned)*s2);
20 PyOS_mystricmp(const char *s1, const char *s2)
22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) {
25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pystrcmp.c 7 PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size)
12 (tolower((unsigned)*s1) == tolower((unsigned)*s2))) {
13 if (!*s1++ || !*s2++)
16 return tolower((unsigned)*s1) - tolower((unsigned)*s2);
20 PyOS_mystricmp(const char *s1, const char *s2)
22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) {
25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2));
  /external/curl/src/
tool_bname.c 33 char *s2; local
36 s2 = strrchr(path, '\\');
38 if(s1 && s2) {
39 path = (s1 > s2) ? s1 + 1 : s2 + 1;
43 else if(s2)
44 path = s2 + 1;
  /external/python/cpython2/Python/
pystrcmp.c 7 PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size)
12 (tolower((unsigned)*s1) == tolower((unsigned)*s2))) {
13 if (!*s1++ || !*s2++)
16 return tolower((unsigned)*s1) - tolower((unsigned)*s2);
20 PyOS_mystricmp(const char *s1, const char *s2)
22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) {
25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2));
  /external/valgrind/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...]
  /external/libcxx/test/std/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...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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...]
  /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);
  /external/clang/test/CodeGenObjCXX/
block-nested-in-lambda.cpp 14 void block_in_lambda(int &s1, int &s2) {
15 auto lambda = [&s1, &s2]() {
17 foo1(s1, s2);
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/
move01.fail.cpp 22 std::unique_ptr<int> s, s2; local
24 s2 = s; // expected-error {{cannot be assigned because its copy assignment operator is implicitly deleted}}
26 s2 = s; // expected-error {{'operator=' is a private member of 'std::__1::unique_ptr}}

Completed in 672 milliseconds

1 2 3 4 5 6 7 8 91011>>