Searched defs:s1 (Results 1 - 24 of 24) sorted by relevance

/bionic/libc/string/
H A Dstrcmp.c45 strcmp(const char *s1, const char *s2) argument
47 while (*s1 == *s2++)
48 if (*s1++ == 0)
50 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
H A Dstrcoll.c37 strcoll(const char *s1, const char *s2) argument
39 return strcmp(s1, s2);
H A Dstrncmp.c39 strncmp(const char *s1, const char *s2, size_t n) argument
44 if (*s1 != *s2++)
45 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
46 if (*s1++ == 0)
H A Dstrcspn.c40 strcspn(const char *s1, const char *s2) argument
49 for (p = s1;;) {
54 return (p - 1 - s1);
H A Dstrpbrk.c34 * Find the first occurrence in s1 of a character in s2 (excluding NUL).
37 strpbrk(const char *s1, const char *s2) argument
42 while ((c = *s1++) != 0) {
45 return ((char *)(s1 - 1));
H A Dstrspn.c37 strspn(const char *s1, const char *s2) argument
39 const char *p = s1, *spanp;
50 return (p - 1 - s1);
H A Dmemcmp.c30 int memcmp(const void *s1, const void *s2, size_t n) argument
32 const unsigned char* p1 = s1;
H A Dstrcasecmp.c77 strcasecmp(const char *s1, const char *s2) argument
80 const u_char *us1 = (const u_char *)s1;
90 strncasecmp(const char *s1, const char *s2, size_t n) argument
94 const u_char *us1 = (const u_char *)s1;
/bionic/libc/wchar/
H A Dwcscat.c40 wcscat(wchar_t * __restrict s1, const wchar_t * __restrict s2) argument
44 cp = s1;
50 return (s1);
H A Dwcscmp.c48 wcscmp(const wchar_t *s1, const wchar_t *s2) argument
51 while (*s1 == *s2++)
52 if (*s1++ == '\0')
55 return (*(const unsigned int *)s1 - *(const unsigned int *)--s2);
H A Dwcscpy.c40 wcscpy(wchar_t * __restrict s1, const wchar_t * __restrict s2) argument
44 cp = s1;
48 return (s1);
H A Dwcsncmp.c42 wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
48 if (*s1 != *s2++) {
50 return (*(const unsigned int *)s1 -
53 if (*s1++ == 0)
H A Dwcscasecmp.c34 wcscasecmp(const wchar_t *s1, const wchar_t *s2) argument
38 for (; *s1; s1++, s2++) {
39 c1 = towlower(*s1);
H A Dwmemcmp.c40 wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
45 if (*s1 != *s2) {
47 return *s1 > *s2 ? 1 : -1;
49 s1++;
H A Dwcsncasecmp.c34 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
40 for (; *s1; s1++, s2++) {
41 c1 = towlower(*s1);
H A Dwcsncat.c40 wcsncat(wchar_t * __restrict s1, const wchar_t * __restrict s2, size_t n) argument
46 p = s1;
56 return s1;
/bionic/libm/src/
H A Ds_atan.c75 double w,s1,s2,z; local
112 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
114 if (id<0) return x - x*(s1+s2);
116 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A Ds_atanf.c58 float w,s1,s2,z; local
92 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
94 if (id<0) return x - x*(s1+s2);
96 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A De_sqrt.c99 u_int32_t r,t1,s1,ix1,q1; local
137 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
154 t1 = s1+r;
157 s1 = t1+r;
158 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
H A De_lgamma_r.c137 s1 = 2.14982415960608852501e-01, /* 0x3FCB848B, 0x36E20878 */ variable
273 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
H A De_lgammaf_r.c71 s1 = 2.1498242021e-01, /* 0x3e5c245a */ variable
207 p = y*(s0+y*(s1+y*(s2+y*(s3+y*(s4+y*(s5+y*s6))))));
/bionic/libc/arch-mips/include/machine/
H A Dregdef.h76 #define s1 $17 macro
/bionic/libc/kernel/arch-mips/asm/
H A Dregdef.h45 #define s1 $17 macro
95 #define s1 $17 macro
/bionic/libc/stdlib/
H A Dstrtod.c1341 CONST char *s, *s0, *s1; local
1479 s1 = s;
1482 if (s - s1 > 8 || L > 19999)

Completed in 174 milliseconds