/illumos-gate/usr/src/boot/include/ |
H A D | stdio.h | 243 int fgetpos(FILE * __restrict, fpos_t * __restrict); 244 char *fgets(char * __restrict, int, FILE * __restrict); 245 FILE *fopen(const char * __restrict, const char * __restrict); 246 int fprintf(FILE * __restrict, const char * __restrict, ...); 248 int fputs(const char * __restrict, FILE * __restrict); 249 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict); 250 FILE *freopen(const char * __restrict, const char * __restrict, FILE * __restrict); 251 int fscanf(FILE * __restrict, const char * __restrict, ...); 255 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict); 260 int printf(const char * __restrict, ...); [all …]
|
H A D | string.h | 55 void *memccpy(void * __restrict, const void * __restrict, int, size_t); 62 void *memcpy(void * __restrict, const void * __restrict, size_t); 69 char *stpcpy(char * __restrict, const char * __restrict); 70 char *stpncpy(char * __restrict, const char * __restrict, size_t); 75 char *strcat(char * __restrict, const char * __restrict); 82 char *strcpy(char * __restrict, const char * __restrict); 92 size_t strlcat(char * __restrict, const char * __restrict, size_t); 93 size_t strlcpy(char * __restrict, const char * __restrict, size_t); 99 char *strncat(char * __restrict, const char * __restrict, size_t); 101 char *strncpy(char * __restrict, const char * __restrict, size_t); [all …]
|
H A D | stdlib.h | 100 size_t mbstowcs(wchar_t * __restrict , const char * __restrict, size_t); 101 int mbtowc(wchar_t * __restrict, const char * __restrict, size_t); 107 double strtod(const char * __restrict, char ** __restrict); 108 float strtof(const char * __restrict, char ** __restrict); 109 long strtol(const char * __restrict, char ** __restrict, int); 111 strtold(const char * __restrict, char ** __restrict); 113 strtoul(const char * __restrict, char ** __restrict, int); 116 size_t wcstombs(char * __restrict, const wchar_t * __restrict, size_t); 146 strtoll(const char * __restrict, char ** __restrict, int); 149 strtoull(const char * __restrict, char ** __restrict, int); [all …]
|
H A D | inttypes.h | 54 intmax_t strtoimax(const char * __restrict, char ** __restrict, int); 55 uintmax_t strtoumax(const char * __restrict, char ** __restrict, int); 56 intmax_t wcstoimax(const wchar_t * __restrict, 57 wchar_t ** __restrict, int); 58 uintmax_t wcstoumax(const wchar_t * __restrict, 59 wchar_t ** __restrict, int);
|
H A D | time.h | 152 size_t strftime(char * __restrict, size_t, const char * __restrict, 153 const struct tm * __restrict); 157 int timer_create(clockid_t, struct sigevent *__restrict, timer_t *__restrict); 161 int timer_settime(timer_t, int, const struct itimerspec *__restrict, 162 struct itimerspec *__restrict); 188 char *strptime(const char * __restrict, const char * __restrict, 189 struct tm * __restrict);
|
H A D | unistd.h | 405 ssize_t readlink(const char * __restrict, char * __restrict, size_t); 434 ssize_t readlinkat(int, const char * __restrict, char * __restrict, size_t); 445 int symlink(const char * __restrict, const char * __restrict); 461 void swab(const void * __restrict, void * __restrict, ssize_t);
|
/illumos-gate/usr/src/boot/include/xlocale/ |
H A D | _time.h | 45 size_t strftime_l(char * __restrict, size_t, const char * __restrict, 46 const struct tm * __restrict, locale_t) __strftimelike(3, 0); 54 char *strptime_l(const char * __restrict, const char * __restrict, 55 struct tm * __restrict, locale_t);
|
/illumos-gate/usr/src/boot/sys/sys/ |
H A D | socket.h | 615 int accept(int, struct sockaddr * __restrict, socklen_t * __restrict); 619 int accept4(int, struct sockaddr * __restrict, socklen_t * __restrict, int); 623 int getpeername(int, struct sockaddr * __restrict, socklen_t * __restrict); 624 int getsockname(int, struct sockaddr * __restrict, socklen_t * __restrict); 625 int getsockopt(int, int, int, void * __restrict, socklen_t * __restrict); 628 ssize_t recvfrom(int, void *, size_t, int, struct sockaddr * __restrict, socklen_t * __restrict); 632 ssize_t recvmmsg(int, struct mmsghdr * __restrict, size_t, int, 633 const struct timespec * __restrict); 641 ssize_t sendmmsg(int, struct mmsghdr * __restrict, size_t, int);
|
H A D | select.h | 98 int pselect(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, 99 const struct timespec *__restrict, const sigset_t *__restrict);
|
H A D | stat.h | 340 int lstat(const char * __restrict, struct stat * __restrict); 348 int stat(const char * __restrict, struct stat * __restrict);
|
/illumos-gate/usr/src/tools/smatch/src/validation/ |
H A D | restrict-array.c | 1 #define __restrict_arr __restrict 8 int __nent, struct sigevent *__restrict __sig); 16 int __ent, struct sigevent *__restrict __sig); 30 extern int regexec (const regex_t *__restrict __preg, 31 const char *__restrict __string, size_t __nmatch,
|
H A D | alternate-keywords.c | 3 extern double strtod(const char *__restrict ptr, char **__restrict endptr);
|
H A D | reserved.c | 26 static int (__restrict);
|
/illumos-gate/usr/src/boot/include/arpa/ |
H A D | inet.h | 147 const char *inet_ntop(int, const void * __restrict, char * __restrict, 149 int inet_pton(int, const char * __restrict, void * __restrict);
|
/illumos-gate/usr/src/boot/libsa/ |
H A D | stand.h | 357 extern long strtol(const char *__restrict, char **__restrict, int); 358 extern long long strtoll(const char *__restrict, char **__restrict, int); 359 extern unsigned long strtoul(const char *__restrict, char **__restrict, int); 360 extern unsigned long long strtoull(const char *__restrict, char **__restrict,
|
/illumos-gate/usr/src/boot/libsa/string/ |
H A D | stpcpy.c | 37 stpcpy(char * __restrict to, const char * __restrict from) in stpcpy()
|
H A D | strcat.c | 39 strcat(char * __restrict s, const char * __restrict append) in strcat()
|
H A D | strcpy.c | 39 strcpy(char * __restrict to, const char * __restrict from) in strcpy()
|
H A D | stpncpy.c | 31 stpncpy(char * __restrict dst, const char * __restrict src, size_t n) in stpncpy()
|
H A D | strncpy.c | 46 strncpy(char * __restrict dst, const char * __restrict src, size_t n) in strncpy()
|
H A D | strlcpy.c | 31 strlcpy(char * __restrict dst, const char * __restrict src, size_t dsize) in strlcpy()
|
H A D | strncat.c | 46 strncat(char * __restrict dst, const char * __restrict src, size_t n) in strncat()
|
H A D | strlcat.c | 33 strlcat(char * __restrict dst, const char * __restrict src, size_t dsize) in strlcat()
|
H A D | swab.c | 42 swab(const void * __restrict from, void * __restrict to, ssize_t len) in swab()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/ |
H A D | probe.win32 | 132 …ne __int16 __int32 __int64 __int8 __leave __near __novtordisp __pascal __restrict __stdcall __sysc… 144 …OUP _asm=GROUP __asm=GROUP const enum _fortran __inline _int64 __int64 __restrict signed void vola… 151 …ne __int16 __int32 __int64 __int8 __leave __near __novtordisp __pascal __restrict __stdcall __sysc… 175 … __asm__=GROUP const __const __const__ enum inline __inline __inline__ __restrict __restrict__ sig…
|