Searched refs:s1 (Results 1 - 25 of 1628) sorted by relevance

1234567891011>>

/external/selinux/mcstrans/share/examples/urcsts-via-include/setrans.d/
H A Du.conf3 s1=UNCLASSIFIED
4 s1=UNCLAS
5 s1=U
/external/clang/test/Misc/
H A Derror-limit.c4 struct s1{}; struct
5 struct s1{}; struct
11 // CHECK: 5:8: error: redefinition of 's1'
H A Derror-limit-multiple-notes.cpp15 struct s1{}; struct
16 struct s1{}; struct
24 // CHECK-NOT: 16:8: error: redefinition of 's1'
/external/strace/tests/
H A Dioctl_sock_gifconf.gen.test2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ioctl_sock_gifconf +ioctl.test -a28 -s1); do not edit.
3 set -- -a28 -s1
/external/strace/tests-m32/
H A Dioctl_sock_gifconf.gen.test2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ioctl_sock_gifconf +ioctl.test -a28 -s1); do not edit.
3 set -- -a28 -s1
/external/strace/tests-mx32/
H A Dioctl_sock_gifconf.gen.test2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ioctl_sock_gifconf +ioctl.test -a28 -s1); do not edit.
3 set -- -a28 -s1
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
21 char s1[] = {1, 2, 3}; local
22 assert(std::char_traits<char>::move(s1, s1+1, 2) == s1);
23 assert(s1[0] == char(2));
24 assert(s1[1] == char(3));
25 assert(s1[2] == char(3));
26 s1[2] = char(0);
27 assert(std::char_traits<char>::move(s1
[all...]
H A Dcopy.pass.cpp14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
21 char s1[] = {1, 2, 3}; local
23 assert(std::char_traits<char>::copy(s2, s1, 3) == s2);
27 assert(std::char_traits<char>::copy(NULL, s1, 0) == NULL);
28 assert(std::char_traits<char>::copy(s1, NULL, 0) == s1);
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
21 wchar_t s1[] = {1, 2, 3}; local
22 assert(std::char_traits<wchar_t>::move(s1, s1+1, 2) == s1);
23 assert(s1[0] == wchar_t(2));
24 assert(s1[1] == wchar_t(3));
25 assert(s1[2] == wchar_t(3));
26 s1[2] = wchar_t(0);
27 assert(std::char_traits<wchar_t>::move(s1
[all...]
/external/clang/test/Parser/
H A Dstruct-recursion.c6 struct s1 { struct s2 *A; }; struct
7 struct s2 { struct s1 *B; };
10 struct s1 a;
/external/python/cpython2/Python/
H A Dpystrcmp.c7 PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size) argument
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) argument
22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) {
25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2));
/external/python/cpython3/Python/
H A Dpystrcmp.c7 PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size) argument
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) argument
22 while (*s1 && (tolower((unsigned)*s1++) == tolower((unsigned)*s2++))) {
25 return (tolower((unsigned)*s1) - tolower((unsigned)*s2));
/external/llvm/test/MC/AMDGPU/
H A Dsopc.s9 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, s
[all...]
/external/curl/src/
H A Dtool_bname.c32 char *s1; local
35 s1 = strrchr(path, '/');
38 if(s1 && s2) {
39 path = (s1 > s2) ? s1 + 1 : s2 + 1;
41 else if(s1)
42 path = s1 + 1;
/external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
H A Dop_less.pass.cpp42 std::chrono::seconds s1(3);
44 assert(!(s1 < s2));
45 assert(!(s1 > s2));
46 assert( (s1 <= s2));
47 assert( (s1 >= s2));
50 std::chrono::seconds s1(3);
52 assert( (s1 < s2));
53 assert(!(s1 > s2));
54 assert( (s1 <= s2));
55 assert(!(s1 >
[all...]
/external/clang/test/CodeGen/
H A Dmms-bitfields.c3 struct s1 { struct
6 } s1; variable in typeref:struct:s1
8 // CHECK: %struct.s1 = type { i32, [4 x i8], i64 }
19 struct s1 s;
22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
H A Dsparc-arguments.c11 struct s1 { struct
15 struct s1 x1;
20 // CHECK: call void @f1_helper(%struct.s1* byval align 8 @x1)
22 // CHECK: declare void @f1_helper(%struct.s1* byval align 8)
24 void f1_helper(struct s1);
/external/clang/test/CodeGenObjCXX/
H A Dblock-nested-in-lambda.cpp14 void block_in_lambda(int &s1, int &s2) { argument
15 auto lambda = [&s1, &s2]() {
17 foo1(s1, s2);
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
22 char16_t s1[] = {1, 2, 3}; local
23 assert(std::char_traits<char16_t>::move(s1, s1+1, 2) == s1);
24 assert(s1[0] == char16_t(2));
25 assert(s1[1] == char16_t(3));
26 assert(s1[2] == char16_t(3));
27 s1[2] = char16_t(0);
28 assert(std::char_traits<char16_t>::move(s1
[all...]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
22 char32_t s1[] = {1, 2, 3}; local
23 assert(std::char_traits<char32_t>::move(s1, s1+1, 2) == s1);
24 assert(s1[0] == char32_t(2));
25 assert(s1[1] == char32_t(3));
26 assert(s1[2] == char32_t(3));
27 s1[2] = char32_t(0);
28 assert(std::char_traits<char32_t>::move(s1
[all...]
/external/valgrind/none/tests/
H A Dfdleak_fcntl.c8 int s1; local
12 s1 = DO( open("/dev/null", O_RDONLY) );
13 (void) DO( fcntl(s1, F_DUPFD, s1) );
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dhighbd_idct32x32_34_add_neon.c39 int32x4x2_t in[8], s1[32], s2[32], s3[32]; local
69 s1[16] = multiply_shift_and_narrow_s32_dual(in[1], cospi_31_64);
71 s1[31] = multiply_shift_and_narrow_s32_dual(in[1], cospi_1_64);
73 s1[20] = multiply_shift_and_narrow_s32_dual(in[5], cospi_27_64);
74 s1[27] = multiply_shift_and_narrow_s32_dual(in[5], cospi_5_64);
76 s1[23] = multiply_shift_and_narrow_s32_dual(in[3], -cospi_29_64);
77 s1[24] = multiply_shift_and_narrow_s32_dual(in[3], cospi_3_64);
84 s1[4] = multiply_shift_and_narrow_s32_dual(in[4], cospi_28_64);
85 s1[7] = multiply_shift_and_narrow_s32_dual(in[4], cospi_4_64);
87 s1[1
375 int32x4x2_t in[8], s1[32], s2[32], s3[32], out[32]; local
[all...]
H A Didct32x32_34_add_neon.c40 int16x8_t in[8], s1[32], s2[32], s3[32]; local
62 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64);
64 s1[31] = multiply_shift_and_narrow_s16(in[1], cospi_1_64);
66 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64);
67 s1[27] = multiply_shift_and_narrow_s16(in[5], cospi_5_64);
69 s1[23] = multiply_shift_and_narrow_s16(in[3], -cospi_29_64);
70 s1[24] = multiply_shift_and_narrow_s16(in[3], cospi_3_64);
77 s1[4] = multiply_shift_and_narrow_s16(in[4], cospi_28_64);
78 s1[7] = multiply_shift_and_narrow_s16(in[4], cospi_4_64);
80 s1[1
271 int16x8_t in[8], s1[32], s2[32], s3[32], out[32]; local
[all...]
/external/syslinux/core/
H A Dstrcasecmp.c8 int strcasecmp(const char *s1, const char *s2) argument
10 return strncasecmp(s1, s2, -1);
/external/fio/oslib/
H A Dstrcasestr.c6 char *strcasestr(const char *s1, const char *s2) argument
8 const char *s = s1;
13 return (char *) s1;
22 s = ++s1;
26 return *p ? NULL : (char *) s1;

Completed in 867 milliseconds

1234567891011>>