Home
last modified time | relevance | path

Searched refs:__restrict (Results 1 – 25 of 28) sorted by relevance

12

/illumos-gate/usr/src/boot/include/
H A Dstdio.h243 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);
250 FILE *freopen(const char * __restrict, const char * __restrict, FILE * __restrict);
251 int fscanf(FILE * __restrict, const char * __restrict, ...);
268 void setbuf(FILE * __restrict, char * __restrict);
275 int vfprintf(FILE * __restrict, const char * __restrict,
278 int vsprintf(char * __restrict, const char * __restrict,
[all …]
H A Dstring.h62 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);
119 char *strtok(char * __restrict, const char * __restrict);
[all …]
H A Dstdlib.h100 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 Dinttypes.h54 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 Dtime.h152 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 Dunistd.h405 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.h45 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 Dsocket.h615 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 Dselect.h98 int pselect(int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict,
99 const struct timespec *__restrict, const sigset_t *__restrict);
H A Dstat.h340 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 Drestrict-array.c1 #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 Dalternate-keywords.c3 extern double strtod(const char *__restrict ptr, char **__restrict endptr);
H A Dreserved.c26 static int (__restrict);
/illumos-gate/usr/src/boot/include/arpa/
H A Dinet.h147 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 Dstand.h361 extern long strtol(const char *__restrict, char **__restrict, int);
362 extern long long strtoll(const char *__restrict, char **__restrict, int);
363 extern unsigned long strtoul(const char *__restrict, char **__restrict, int);
364 extern unsigned long long strtoull(const char *__restrict, char **__restrict,
/illumos-gate/usr/src/boot/libsa/string/
H A Dstpcpy.c37 stpcpy(char * __restrict to, const char * __restrict from) in stpcpy()
H A Dstrcat.c39 strcat(char * __restrict s, const char * __restrict append) in strcat()
H A Dstrcpy.c39 strcpy(char * __restrict to, const char * __restrict from) in strcpy()
H A Dstpncpy.c31 stpncpy(char * __restrict dst, const char * __restrict src, size_t n) in stpncpy()
H A Dstrncpy.c46 strncpy(char * __restrict dst, const char * __restrict src, size_t n) in strncpy()
H A Dstrlcpy.c31 strlcpy(char * __restrict dst, const char * __restrict src, size_t dsize) in strlcpy()
H A Dstrncat.c46 strncat(char * __restrict dst, const char * __restrict src, size_t n) in strncat()
H A Dstrlcat.c33 strlcat(char * __restrict dst, const char * __restrict src, size_t dsize) in strlcat()
H A Dswab.c42 swab(const void * __restrict from, void * __restrict to, ssize_t len) in swab()
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/
H A Dprobe.win32132 …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…

12