HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 1 - 25 of 870) 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/clang/test/Parser/
struct-recursion.c 6 struct s1 { struct s2 *A; };
7 struct s2 { struct s1 *B; }; struct
11 struct s2 b;
  /bionic/libc/string/
strcoll.c 37 strcoll(const char *s1, const char *s2)
39 return strcmp(s1, s2);
strcmp.c 45 strcmp(const char *s1, const char *s2)
47 while (*s1 == *s2++)
50 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
strncmp.c 39 strncmp(const char *s1, const char *s2, size_t n)
44 if (*s1 != *s2++)
45 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
strpbrk.c 34 * Find the first occurrence in s1 of a character in s2 (excluding NUL).
37 strpbrk(const char *s1, const char *s2)
43 for (scanp = s2; (sc = *scanp++) != 0;)
  /dalvik/vm/mterp/c/
OP_AGET_SHORT.cpp 1 HANDLE_OP_AGET(OP_AGET_SHORT, "-short", s2, )
OP_APUT_SHORT.cpp 1 HANDLE_OP_APUT(OP_APUT_SHORT, "-short", s2, )
OP_INT_TO_SHORT.cpp 1 HANDLE_INT_TO_SMALL(OP_INT_TO_SHORT, "short", s2) /* want sign bit */
  /external/clang/test/CodeGenCXX/
builtins.cpp 13 template<int (*Compare)(const char *s1, const char *s2)>
14 int equal(const char *s1, const char *s2) {
15 return Compare(s1, s2) == 0;
  /system/core/sh/
mystring.h 44 #define equal(s1, s2) (strcmp(s1, s2) == 0)
45 #define scopy(s1, s2) ((void)strcpy(s2, s1))
  /external/webkit/Source/JavaScriptCore/wtf/
StringExtras.cpp 34 int strcasecmp(const char* s1, const char* s2)
36 while (toASCIIUpper(*s1) == toASCIIUpper(*s2)) {
40 s2++;
43 return toASCIIUpper(*s1) - toASCIIUpper(*s2);
46 int strncasecmp(const char* s1, const char* s2, size_t len)
48 while (len > 0 && toASCIIUpper(*s1) == toASCIIUpper(*s2)) {
52 s2++;
59 return toASCIIUpper(*s1) - toASCIIUpper(*s2);
  /bionic/libc/wchar/
wcscmp.c 48 wcscmp(const wchar_t *s1, const wchar_t *s2)
51 while (*s1 == *s2++)
55 return (*(const unsigned int *)s1 - *(const unsigned int *)--s2);
wcscasecmp.c 34 wcscasecmp(const wchar_t *s1, const wchar_t *s2)
38 for (; *s1; s1++, s2++) {
40 c2 = towlower(*s2);
44 return (-*s2);
wmemcmp.c 40 wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n)
45 if (*s1 != *s2) {
47 return *s1 > *s2 ? 1 : -1;
50 s2++;
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);
  /ndk/build/awk/
check-awk.awk 33 s2=substr(s1,RSTART,RLENGTH)
34 if (s2 != "world") {
35 print "Fail substr="s2
  /external/clang/test/CodeGen/
mms-bitfields.c 10 struct s2 { struct
13 } s2; variable in typeref:struct:s2
15 // CHECK: %struct.s2 = type { i32, [4 x i8], [4 x i64] }
2002-03-11-LargeCharInString.c 3 int strcmp(const char *s1, const char *s2);
2002-04-09-StructRetVal.c 5 short s1, s2; member in struct:S
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/PCH/
changed-files.c 3 const char *s2 = m0; variable
  /external/valgrind/main/memcheck/tests/
memcmptest.c 8 char *s1, *s2; variable
12 s2 = malloc(10); strcpy(s2,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
convolve.cpp 216 Word32 s1, s2; local
224 s2 = ((Word32) * (x)) * *(h--);
229 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (x), (Word32) * (h--), s2);
231 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (x), (Word32) * (h--), s2);
235 s2 = amrnb_fxp_mac_16_by_16bb((Word32) * (x), (Word32) * (h), s2);
238 *(y++) = (Word16)(s2 >> 12);
  /ndk/sources/host-tools/sed-4.2.1/lib/
streq.h 37 streq9 (const char *s1, const char *s2)
39 return strcmp (s1 + 9, s2 + 9) == 0;
43 streq8 (const char *s1, const char *s2, char s28)
50 return streq9 (s1, s2);
57 streq7 (const char *s1, const char *s2, char s27, char s28)
64 return streq8 (s1, s2, s28);
71 streq6 (const char *s1, const char *s2, char s26, char s27, char s28)
78 return streq7 (s1, s2, s27, s28);
85 streq5 (const char *s1, const char *s2, char s25, char s26, char s27, char s28)
92 return streq6 (s1, s2, s26, s27, s28)
    [all...]

Completed in 550 milliseconds

1 2 3 4 5 6 7 8 91011>>