HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 126 - 150 of 3899) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bison/lib/
c-strcase.h 39 /* Compare strings S1 and S2, ignoring case, returning less than, equal to or
41 than S2. */
42 extern int c_strcasecmp (const char *s1, const char *s2) _GL_ATTRIBUTE_PURE;
44 /* Compare no more than N characters of strings S1 and S2, ignoring case,
46 lexicographically less than, equal to or greater than S2. */
47 extern int c_strncasecmp (const char *s1, const char *s2, size_t n)
  /external/clang/test/CodeGen/
ms_struct.c 11 struct s2 { struct
14 } ATTR s2; variable in typeref:struct:s2
16 // CHECK: %struct.s2 = type { i32, [4 x i8], [4 x i64] }
  /external/clang/test/CodeGenCXX/
cfi-blacklist.cpp 11 struct S2 {
27 void s2f(std::S2 *s2) {
28 s2->f();
  /external/compiler-rt/test/sanitizer_common/TestCases/
strcasestr.c 12 char s2[] = "b"; local
13 r = strcasestr(s1, s2);
strcspn.c 9 char s2[] = "cd"; local
10 r = strcspn(s1, s2);
strpbrk.c 10 char s2[] = "cd"; local
11 r = strpbrk(s1, s2);
strspn.c 9 char s2[] = "ac"; local
10 r = strspn(s1, s2);
strstr.c 8 char s2[] = "b"; local
9 r = strstr(s1, s2);
  /external/libcxx/test/libcxx/containers/gnu_cxx/
hash_set.pass.cpp 24 Set s2(s);
25 ((void)s2);
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert13.fail.cpp 34 std::unique_ptr<A, Deleter> s2; local
35 s2 = std::move(s); // expected-error {{no viable overloaded '='}}
  /external/libcxx/test/std/utilities/utility/exchange/
exchange.pass.cpp 41 const std::string s2 ( "Yo Dad!" );
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 );
  /external/syslinux/com32/lib/
memcmp.c 7 int memcmp(const void *s1, const void *s2, size_t n)
9 const unsigned char *c1 = s1, *c2 = s2;
strcmp.c 7 int strcmp(const char *s1, const char *s2)
10 const unsigned char *c2 = (const unsigned char *)s2;
  /external/vboot_reference/firmware/lib/
utility.c 12 int SafeMemcmp(const void *s1, const void *s2, size_t n) {
14 const unsigned char *us2 = s2;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert13.fail.cpp 33 std::unique_ptr<A, Deleter> s2; local
34 s2 = std::move(s);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/exchange/
exchange.pass.cpp 41 const std::string s2 ( "Yo Dad!" );
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert13.fail.cpp 34 std::unique_ptr<A, Deleter> s2; local
35 s2 = std::move(s); // expected-error {{no viable overloaded '='}}
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/exchange/
exchange.pass.cpp 41 const std::string s2 ( "Yo Dad!" );
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 );
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
half-prec-psyntax.s 4 vcvtt s2.f32, s5.f16
5 vcvtb s2.f32, s5.f16
6 vcvtt s2.f16, s5.f32
7 vcvtb s2.f16, s5.f32
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
expr.s 2 xdef s1,s2,s3,s4,s5
4 s2 equ 3<<1*3 define
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
pcr-relocs-undef.s 3 mvk .s2 $PCR_OFFSET (S0,L1), b2
  /toolchain/binutils/binutils-2.25/libiberty/
memmove.c 22 memmove (PTR s1, const PTR s2, size_t n)
24 bcopy (s2, s1, n);
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsncasecmp.c 34 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n)
40 for (; *s1; s1++, s2++) {
42 c2 = towlower(*s2);
48 return (-*s2);
  /external/clang/test/Modules/Inputs/template-specialization-visibility/
b.h 5 T<int>::S *s2; variable
  /external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/
compare.pass.cpp 42 std::string s2("aaaaaaA");
44 assert(f.compare(s2.data(), s2.data() + s2.size(),
49 std::wstring s2(L"aaaaaaA");
51 assert(f.compare(s2.data(), s2.data() + s2.size(),
59 std::string s2("aaaaaaA");
61 assert(f.compare(s2.data(), s2.data() + s2.size()
    [all...]

Completed in 734 milliseconds

1 2 3 4 56 7 8 91011>>