/glibc-2.36/string/ |
D | string-inlines.c | 31 __old_strtok_r_1c (char *__s, char __sep, char **__nextp) in __old_strtok_r_1c() argument 34 if (__s == NULL) in __old_strtok_r_1c() 35 __s = *__nextp; in __old_strtok_r_1c() 36 while (*__s == __sep) in __old_strtok_r_1c() 37 ++__s; in __old_strtok_r_1c() 39 if (*__s != '\0') in __old_strtok_r_1c() 41 __result = __s++; in __old_strtok_r_1c() 42 while (*__s != '\0') in __old_strtok_r_1c() 43 if (*__s++ == __sep) in __old_strtok_r_1c() 45 __s[-1] = '\0'; in __old_strtok_r_1c() [all …]
|
D | string.h | 61 extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1)); 87 extern void *memchr (void *__s, int __c, size_t __n) 89 extern const void *memchr (const void *__s, int __c, size_t __n) 94 memchr (void *__s, int __c, size_t __n) __THROW in memchr() argument 96 return __builtin_memchr (__s, __c, __n); in memchr() 100 memchr (const void *__s, int __c, size_t __n) __THROW in memchr() argument 102 return __builtin_memchr (__s, __c, __n); in memchr() 107 extern void *memchr (const void *__s, int __c, size_t __n) 115 extern "C++" void *rawmemchr (void *__s, int __c) 117 extern "C++" const void *rawmemchr (const void *__s, int __c) [all …]
|
D | strings.h | 42 extern void bzero (void *__s, size_t __n) __THROW __nonnull ((1)); 48 extern char *index (char *__s, int __c) 50 extern const char *index (const char *__s, int __c) 55 index (char *__s, int __c) __THROW in index() argument 57 return __builtin_index (__s, __c); in index() 61 index (const char *__s, int __c) __THROW in index() argument 63 return __builtin_index (__s, __c); in index() 68 extern char *index (const char *__s, int __c) 76 extern char *rindex (char *__s, int __c) 78 extern const char *rindex (const char *__s, int __c) [all …]
|
/glibc-2.36/wcsmbs/bits/ |
D | wchar2.h | 94 extern wchar_t *__wmemset_chk (wchar_t *__s, wchar_t __c, size_t __n, 96 extern wchar_t *__REDIRECT_NTH (__wmemset_alias, (wchar_t *__s, wchar_t __c, 99 (wchar_t *__s, wchar_t __c, size_t __n, 105 __NTH (wmemset (wchar_t *__s, wchar_t __c, size_t __n)) in __NTH() argument 108 __glibc_objsize0 (__s), in __NTH() 109 __s, __c, __n); in __NTH() 231 extern int __swprintf_chk (wchar_t *__restrict __s, size_t __n, 237 (wchar_t *__restrict __s, size_t __n, 243 __NTH (swprintf (wchar_t *__restrict __s, size_t __n, in __NTH() argument 246 size_t sz = __glibc_objsize (__s); in __NTH() [all …]
|
/glibc-2.36/libio/bits/ |
D | stdio2.h | 28 __NTH (sprintf (char *__restrict __s, const char *__restrict __fmt, ...)) in __NTH() argument 30 return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, in __NTH() 31 __glibc_objsize (__s), __fmt, in __NTH() 41 __NTH (vsprintf (char *__restrict __s, const char *__restrict __fmt, in __NTH() argument 44 return __builtin___vsprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, in __NTH() 45 __glibc_objsize (__s), __fmt, __ap); in __NTH() 51 __NTH (snprintf (char *__restrict __s, size_t __n, in __NTH() argument 54 return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, in __NTH() 55 __glibc_objsize (__s), __fmt, in __NTH() 65 __NTH (vsnprintf (char *__restrict __s, size_t __n, in __NTH() argument [all …]
|
D | stdio2-decl.h | 26 extern int __sprintf_chk (char *__restrict __s, int __flag, size_t __slen, 29 extern int __vsprintf_chk (char *__restrict __s, int __flag, size_t __slen, 36 extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag, 40 extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag, 90 extern char *__fgets_chk (char *__restrict __s, size_t __size, int __n, 99 extern char *__fgets_unlocked_chk (char *__restrict __s, size_t __size,
|
/glibc-2.36/libio/ |
D | stdio.h | 210 extern char *tmpnam_r (char __s[L_tmpnam]) __THROW __wur; 308 extern FILE *fmemopen (void *__s, size_t __len, const char *__modes) 358 extern int sprintf (char *__restrict __s, 365 extern int vfprintf (FILE *__restrict __s, const char *__restrict __format, 373 extern int vsprintf (char *__restrict __s, const char *__restrict __format, 378 extern int snprintf (char *__restrict __s, size_t __maxlen, 382 extern int vsnprintf (char *__restrict __s, size_t __maxlen, 423 extern int sscanf (const char *__restrict __s, 439 extern int __REDIRECT_NTH (sscanf, (const char *__restrict __s, 446 extern int __isoc99_sscanf (const char *__restrict __s, [all …]
|
/glibc-2.36/wcsmbs/ |
D | wchar.h | 154 extern wchar_t *wcsdup (const wchar_t *__s) __THROW 182 extern wchar_t *wcschrnul (const wchar_t *__s, wchar_t __wc) 218 extern wchar_t *wcstok (wchar_t *__restrict __s, 223 extern size_t wcslen (const wchar_t *__s) __THROW __attribute_pure__; 241 extern size_t wcsnlen (const wchar_t *__s, size_t __maxlen) 248 extern "C++" wchar_t *wmemchr (wchar_t *__s, wchar_t __c, size_t __n) 250 extern "C++" const wchar_t *wmemchr (const wchar_t *__s, wchar_t __c, 254 extern wchar_t *wmemchr (const wchar_t *__s, wchar_t __c, size_t __n) 272 extern wchar_t *wmemset (wchar_t *__s, wchar_t __c, size_t __n) __THROW; 298 const char *__restrict __s, size_t __n, [all …]
|
D | uchar.h | 56 const char *__restrict __s, size_t __n, 60 extern size_t c8rtomb (char *__restrict __s, char8_t __c8, 67 const char *__restrict __s, size_t __n, 71 extern size_t c16rtomb (char *__restrict __s, char16_t __c16, 79 const char *__restrict __s, size_t __n, 83 extern size_t c32rtomb (char *__restrict __s, char32_t __c32,
|
/glibc-2.36/include/ |
D | wchar.h | 147 extern wchar_t *__wmemchr (const wchar_t *__s, wchar_t __c, size_t __n) 162 extern size_t __wcslen (const wchar_t *__s) __attribute_pure__; 163 extern size_t __wcsnlen (const wchar_t *__s, size_t __maxlen) 169 const char *__restrict __s, size_t __n, 173 extern size_t __wcrtomb (char *__restrict __s, wchar_t __wc, 175 extern size_t __wcrtomb_internal (char *__restrict __s, wchar_t __wc, 212 extern wchar_t *__wcschrnul (const wchar_t *__s, wchar_t __wc) 215 extern wchar_t *__wmemset_chk (wchar_t *__s, wchar_t __c, size_t __n, 218 extern int __vfwscanf (__FILE *__restrict __s, 223 extern int __fwprintf (__FILE *__restrict __s, [all …]
|
D | stdio.h | 42 extern int __snprintf (char *__restrict __s, size_t __maxlen, 47 extern int __vfscanf (FILE *__restrict __s, 57 extern int __vsscanf (const char *__restrict __s, 87 extern int __isoc99_sscanf (const char *__restrict __s, 89 extern int __isoc99_vfscanf (FILE *__restrict __s, 94 extern int __isoc99_vsscanf (const char *__restrict __s,
|
D | string.h | 36 extern void *__rawmemchr (const void *__s, int __c) 39 extern char *__strchrnul (const char *__s, int __c) 42 extern void *__memrchr (const void *__s, int __c, size_t __n) 45 extern void *__memchr (const void *__s, int __c, size_t __n) 48 extern void __bzero (void *__s, size_t __n) __THROW __nonnull ((1));
|
/glibc-2.36/sysdeps/generic/ |
D | internal-signals.h | 44 #define internal_sigemptyset(__s) __sigemptyset (__s) argument 45 #define internal_sigaddset(__s, __i) __sigaddset (__s, __i) argument 46 #define internal_sigprocmask(__h, __s, __o) __sigprocmask (__h, __s, __o) argument
|
/glibc-2.36/misc/sys/ |
D | cdefs.h | 159 #define __glibc_safe_len_cond(__l, __s, __osz) ((__l) <= (__osz) / (__s)) argument 166 #define __glibc_safe_or_unknown_len(__l, __s, __osz) \ argument 170 (__s), (__osz))) \ 171 && __glibc_safe_len_cond ((__SIZE_TYPE__) (__l), (__s), (__osz)))) 176 #define __glibc_unsafe_len(__l, __s, __osz) \ argument 179 __s, __osz)) \ 180 && !__glibc_safe_len_cond ((__SIZE_TYPE__) (__l), __s, __osz)) 185 #define __glibc_fortify(f, __l, __s, __osz, ...) \ argument 186 (__glibc_safe_or_unknown_len (__l, __s, __osz) \ 188 : (__glibc_unsafe_len (__l, __s, __osz) \ [all …]
|
/glibc-2.36/stdlib/bits/ |
D | stdlib.h | 73 extern int __wctomb_chk (char *__s, wchar_t __wchar, size_t __buflen) 75 extern int __REDIRECT_NTH (__wctomb_alias, (char *__s, wchar_t __wchar), 79 __NTH (wctomb (char *__s, wchar_t __wchar)) in __NTH() argument 88 if (__glibc_objsize (__s) != (size_t) -1 in __NTH() 89 && __STDLIB_MB_LEN_MAX > __glibc_objsize (__s)) in __NTH() 90 return __wctomb_chk (__s, __wchar, __glibc_objsize (__s)); in __NTH() 91 return __wctomb_alias (__s, __wchar); in __NTH()
|
/glibc-2.36/sysdeps/sh/ |
D | dl-machine.h | 260 void *__s = (swp), *__t = (twp); \ in elf_machine_rela() 261 unsigned char *__s1 = __s, *__t1 = __t; \ in elf_machine_rela() 262 unsigned short *__s2 = __s, *__t2 = __t; \ in elf_machine_rela() 263 unsigned long *__s4 = __s, *__t4 = __t; \ in elf_machine_rela()
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | tst-ntp_gettime.c | 29 #define STR(__s) #__s argument
|
/glibc-2.36/stdlib/ |
D | monetary.h | 38 extern ssize_t strfmon (char *__restrict __s, size_t __maxsize, 48 extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
|
D | stdlib.h | 389 extern long int a64l (const char *__s) 943 extern int mblen (const char *__s, size_t __n) __THROW; 947 const char *__restrict __s, size_t __n) __THROW; 950 extern int wctomb (char *__s, wchar_t __wchar) __THROW; 955 const char *__restrict __s, size_t __n) __THROW 958 extern size_t wcstombs (char *__restrict __s,
|
D | longlong.h | 825 DWunion __s, __a, __b; \ 828 __s.ll = __a.ll + __b.ll; \ 829 (sl) = __s.s.low; (sh) = __s.s.high; \ 833 DWunion __s, __a, __b; \ 836 __s.ll = __a.ll - __b.ll; \ 837 (sl) = __s.s.low; (sh) = __s.s.high; \
|
/glibc-2.36/time/ |
D | time.h | 100 extern size_t strftime (char *__restrict __s, size_t __maxsize, 107 extern char *strptime (const char *__restrict __s, 116 extern size_t strftime_l (char *__restrict __s, size_t __maxsize, 123 extern char *strptime_l (const char *__restrict __s,
|
D | strftime_l.c | 269 const char *__s = os; \ 271 l = __mbsrtowcs_l (NULL, &__s, 0, &__st, loc); \ 273 (void) __mbsrtowcs_l (ws, &__s, l, &__st, loc); \
|
/glibc-2.36/inet/netinet/ |
D | in.h | 610 extern int getipv4sourcefilter (int __s, struct in_addr __interface_addr, 616 extern int setipv4sourcefilter (int __s, struct in_addr __interface_addr, 624 extern int getsourcefilter (int __s, uint32_t __interface_addr, 631 extern int setsourcefilter (int __s, uint32_t __interface_addr,
|
/glibc-2.36/signal/ |
D | signal.h | 134 extern void psignal (int __sig, const char *__s); 137 extern void psiginfo (const siginfo_t *__pinfo, const char *__s);
|
/glibc-2.36/posix/ |
D | unistd.h | 1180 extern char *ctermid (char *__s) __THROW; 1183 extern char *cuserid (char *__s);
|