/bionic/libc/upstream-freebsd/lib/libc/string/ |
H A D | wcscat.c | 40 wcscat(wchar_t * __restrict s1, const wchar_t * __restrict s2) argument 44 cp = s1; 50 return (s1);
|
H A D | wcscmp.c | 48 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 D | wcscpy.c | 40 wcscpy(wchar_t * __restrict s1, const wchar_t * __restrict s2) argument 44 cp = s1; 48 return (s1);
|
H A D | wcsncmp.c | 42 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 D | wcscasecmp.c | 34 wcscasecmp(const wchar_t *s1, const wchar_t *s2) argument 38 for (; *s1; s1++, s2++) { 39 c1 = towlower(*s1);
|
H A D | wmemcmp.c | 40 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 D | wcsncasecmp.c | 34 wcsncasecmp(const wchar_t *s1, const wchar_t *s2, size_t n) argument 40 for (; *s1; s1++, s2++) { 41 c1 = towlower(*s1);
|
H A D | wcsncat.c | 40 wcsncat(wchar_t * __restrict s1, const wchar_t * __restrict s2, size_t n) argument 46 p = s1; 56 return s1;
|
/bionic/libc/upstream-netbsd/lib/libc/string/ |
H A D | strcoll.c | 51 strcoll(const char *s1, const char *s2) argument 54 _DIAGASSERT(s1 != NULL); 58 return (strcmp(s1, s2));
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
H A D | wcscoll.c | 37 wcscoll(const wchar_t *s1, const wchar_t *s2) argument 40 return (wcscmp(s1, s2));
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
H A D | strcmp.c | 41 strcmp(const char *s1, const char *s2) argument 43 while (*s1 == *s2++) 44 if (*s1++ == 0) 46 return (*(unsigned char *)s1 - *(unsigned char *)--s2);
|
H A D | strncmp.c | 35 strncmp(const char *s1, const char *s2, size_t n) argument 41 if (*s1 != *s2++) 42 return (*(unsigned char *)s1 - *(unsigned char *)--s2); 43 if (*s1++ == 0)
|
H A D | strcspn.c | 40 strcspn(const char *s1, const char *s2) argument 49 for (p = s1;;) { 54 return (p - 1 - s1);
|
H A D | strpbrk.c | 34 * 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 D | strspn.c | 37 strspn(const char *s1, const char *s2) argument 39 const char *p = s1, *spanp; 50 return (p - 1 - s1);
|
H A D | strcasecmp.c | 77 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/private/ |
H A D | bionic_string_utils.h | 22 static inline bool ends_with(const char* s1, const char* s2) { argument 23 size_t s1_length = strlen(s1); 28 return memcmp(s1 + (s1_length - s2_length), s2, s2_length) == 0;
|
/bionic/libc/arch-mips/string/ |
H A D | memcmp.c | 30 int memcmp(const void *s1, const void *s2, size_t n) argument 32 const unsigned char* p1 = s1;
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
H A D | s_atan.c | 76 double w,s1,s2,z; local 113 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10]))))); 115 if (id<0) return x - x*(s1+s2); 117 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
|
H A D | s_atanf.c | 51 float w,s1,s2,z; local 85 s1 = z*(aT[0]+w*(aT[2]+w*aT[4])); 87 if (id<0) return x - x*(s1+s2); 89 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
|
H A D | s_atanl.c | 36 long double w,s1,s2,z; local 78 s1 = z*T_even(w); 80 if (id<0) return x - x*(s1+s2); 82 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
|
H A D | e_sqrt.c | 100 u_int32_t r,t1,s1,ix1,q1; local 138 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */ 155 t1 = s1+r; 158 s1 = t1+r; 159 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
H A D | gethex.c | 47 CONST unsigned char *decpt, *s0, *s, *s1; local 124 s1 = s; 137 s = s1; 205 n = s1 - s0 - 1; 217 while(s1 > s0) { 219 if (*--s1 == decimalpoint[i]) { 220 s1 -= i; 224 if (*--s1 == '.') 232 L |= (hexdig[*s1] & 0x0f) << n;
|
/bionic/libc/arch-mips/include/machine/ |
H A D | regdef.h | 83 #define s1 $17 macro
|
/bionic/libc/arch-mips64/include/machine/ |
H A D | regdef.h | 83 #define s1 $17 macro
|