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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Misc/
error-limit.c 4 struct s1{}; struct
5 struct s1{}; struct
11 // CHECK: 5:8: error: redefinition of 's1'
error-limit-multiple-notes.cpp 14 struct s1{}; struct
15 struct s1{}; struct
22 // CHECK-NOT: 15:8: error: redefinition of 's1'
  /external/clang/test/Parser/
struct-recursion.c 6 struct s1 { struct s2 *A; }; struct
7 struct s2 { struct s1 *B; };
10 struct s1 a;
  /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++)
48 if (*s1++ == 0)
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);
46 if (*s1++ == 0)
strpbrk.c 34 * Find the first occurrence in s1 of a character in s2 (excluding NUL).
37 strpbrk(const char *s1, const char *s2)
42 while ((c = *s1++) != 0) {
45 return ((char *)(s1 - 1));
  /dalvik/vm/mterp/c/
OP_AGET_BYTE.cpp 1 HANDLE_OP_AGET(OP_AGET_BYTE, "-byte", s1, )
OP_APUT_BYTE.cpp 1 HANDLE_OP_APUT(OP_APUT_BYTE, "-byte", s1, )
OP_INT_TO_BYTE.cpp 1 HANDLE_INT_TO_SMALL(OP_INT_TO_BYTE, "byte", s1)
OP_GOTO.cpp 3 if ((s1)vdst < 0)
4 ILOGV("|goto -0x%02x", -((s1)vdst));
6 ILOGV("|goto +0x%02x", ((s1)vdst));
8 if ((s1)vdst < 0)
9 PERIODIC_CHECKS((s1)vdst);
10 FINISH((s1)vdst);
  /external/webkit/Source/JavaScriptCore/wtf/
StringExtras.cpp 34 int strcasecmp(const char* s1, const char* s2)
36 while (toASCIIUpper(*s1) == toASCIIUpper(*s2)) {
37 if (*s1 == '\0')
39 s1++;
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)) {
49 if (*s1 == '\0')
51 s1++;
59 return toASCIIUpper(*s1) - toASCIIUpper(*s2)
    [all...]
  /external/clang/test/CodeGen/
mms-bitfields.c 3 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 }
ms_struct.c 4 struct s1 { struct
7 } ATTR s1; variable in typeref:struct:s1
9 // CHECK: %struct.s1 = type { i32, [4 x i8], i64 }
20 struct s1 s;
23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
2002-03-11-LargeCharInString.c 3 int strcmp(const char *s1, const char *s2);
  /bionic/libc/wchar/
wcscmp.c 48 wcscmp(const wchar_t *s1, const wchar_t *s2)
51 while (*s1 == *s2++)
52 if (*s1++ == '\0')
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++) {
39 c1 = towlower(*s1);
wcsncmp.c 42 wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n)
48 if (*s1 != *s2++) {
50 return (*(const unsigned int *)s1 -
53 if (*s1++ == 0)
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;
49 s1++;
  /external/valgrind/main/none/tests/
fdleak_fcntl.c 8 int s1; local
12 s1 = DO( open("/dev/null", O_RDONLY) );
13 DO( fcntl(s1, F_DUPFD, s1) );
  /system/core/sh/
mystring.h 44 #define equal(s1, s2) (strcmp(s1, s2) == 0)
45 #define scopy(s1, s2) ((void)strcpy(s2, s1))
  /dalvik/vm/compiler/template/armv5te-vfp/
funop.S 3 * "instr" line that specifies an instruction that performs "s1 = op s0".
13 $instr @ s1<- op s0
14 fsts s1, [r0] @ vA<- s1
  /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)
45 if (s1[8] == s28)
50 return streq9 (s1, s2);
57 streq7 (const char *s1, const char *s2, char s27, char s28)
59 if (s1[7] == s27)
64 return streq8 (s1, s2, s28);
71 streq6 (const char *s1, const char *s2, char s26, char s27, char s28)
73 if (s1[6] == s26
    [all...]
  /gdk/build/awk/
check-awk.awk 25 s1="A real world example"
26 if (! match(s1,"world")) {
33 s2=substr(s1,RSTART,RLENGTH)
  /ndk/build/awk/
check-awk.awk 25 s1="A real world example"
26 if (! match(s1,"world")) {
33 s2=substr(s1,RSTART,RLENGTH)

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>