Searched refs:s2 (Results 1 - 25 of 29) sorted by relevance

12

/bionic/libc/string/
H A Dstrcoll.c37 strcoll(const char *s1, const char *s2) argument
39 return strcmp(s1, s2);
H A Dstrcmp.c45 strcmp(const char *s1, const char *s2) argument
47 while (*s1 == *s2++)
50 return (*(unsigned char *)s1 - *(unsigned char *)--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);
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
43 for (scanp = s2; (sc = *scanp++) != 0;)
H A Dstrcasecmp.c77 strcasecmp(const char *s1, const char *s2) argument
81 const u_char *us2 = (const u_char *)s2;
90 strncasecmp(const char *s1, const char *s2, size_t n) argument
95 const u_char *us2 = (const u_char *)s2;
H A Dstrcspn.c37 * Span the complement of string s2.
40 strcspn(const char *s1, const char *s2) argument
46 * Stop as soon as we find any character from s2. Note that there
47 * must be a NUL in s2; it suffices to stop when we find that, too.
51 spanp = s2;
H A Dstrspn.c34 * Span the string s2 (skip characters that are in s2).
37 strspn(const char *s1, const char *s2) argument
43 * Skip any characters in s2, excluding the terminating \0.
47 for (spanp = s2; (sc = *spanp++) != 0;)
H A Dmemcmp.c30 int memcmp(const void *s1, const void *s2, size_t n) argument
34 const unsigned char* p2 = s2;
/bionic/libc/wchar/
H A Dwcscmp.c48 wcscmp(const wchar_t *s1, const wchar_t *s2) argument
51 while (*s1 == *s2++)
55 return (*(const unsigned int *)s1 - *(const unsigned int *)--s2);
H A Dwcscasecmp.c34 wcscasecmp(const wchar_t *s1, const wchar_t *s2) argument
38 for (; *s1; s1++, s2++) {
40 c2 = towlower(*s2);
44 return (-*s2);
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;
50 s2++;
H A Dwcsncasecmp.c34 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
40 for (; *s1; s1++, s2++) {
42 c2 = towlower(*s2);
48 return (-*s2);
H A Dwcsncmp.c42 wcsncmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument
48 if (*s1 != *s2++) {
51 *(const unsigned int *)--s2);
H A Dwcscat.c40 wcscat(wchar_t * __restrict s1, const wchar_t * __restrict s2) argument
47 while ((*cp++ = *s2++) != L'\0')
H A Dwcscpy.c40 wcscpy(wchar_t * __restrict s1, const wchar_t * __restrict s2) argument
45 while ((*cp++ = *s2++) != L'\0')
H A Dwcsncat.c40 wcsncat(wchar_t * __restrict s1, const wchar_t * __restrict s2, size_t n) argument
50 r = s2;
/bionic/libm/src/
H A Ds_atan.c75 double w,s1,s2,z; local
113 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
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
93 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));
94 if (id<0) return x - x*(s1+s2);
96 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
H A De_pow.c205 double ss,s2,s_h,s_l,t_h,t_l; local
231 s2 = ss*ss;
232 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
234 s2
[all...]
H A De_powf.c147 float s2,s_h,s_l,t_h,t_l; local
174 s2 = s*s;
175 r = s2*s2*(L1+s2*(L2+s2*(L3+s2*(L4+s2*(L5+s2*L6)))));
177 s2
[all...]
/bionic/libc/arch-mips/include/machine/
H A Dregdef.h77 #define s2 $18 macro
/bionic/libc/kernel/arch-mips/asm/
H A Dregdef.h46 #define s2 $18 macro
96 #define s2 $18 macro
/bionic/libc/stdlib/
H A Dwchar.c211 const char* s2 = memchr( s, 0, len ); local
213 if (s2 != NULL)
214 len = (size_t)(s2 - s) + 1U;
268 const char* s2 = memchr( s, 0, len ); local
270 if (s2 != NULL)
271 len = (s2 - s)+1;
H A Dstrtod.c2114 j, jj1, k, k0, k_check, leftright, m2, m5, s2, s5, local
2253 s2 = j;
2257 s2 = 0;
2262 s2 += k;
2491 s2 += i;
2494 if (m2 > 0 && s2 > 0) {
2495 i = m2 < s2 ? m2 : s2;
2498 s2 -= i;
2528 s2
[all...]
/bionic/libc/arch-mips/bionic/
H A D_setjmp.S71 REG_S s2, SC_REGS+S2*REGSZ(a0)
134 REG_L s2, SC_REGS+S2*REGSZ(a0)

Completed in 176 milliseconds

12