Lines Matching refs:__restrict

249 extern FILE *fopen (__const char *__restrict __filename,
250 __const char *__restrict __modes) __wur;
255 extern FILE *freopen (__const char *__restrict __filename,
256 __const char *__restrict __modes,
257 FILE *__restrict __stream) __wur;
260 extern FILE *__REDIRECT (fopen, (__const char *__restrict __filename,
261 __const char *__restrict __modes), fopen64)
263 extern FILE *__REDIRECT (freopen, (__const char *__restrict __filename,
264 __const char *__restrict __modes,
265 FILE *__restrict __stream), freopen64)
274 extern FILE *fopen64 (__const char *__restrict __filename,
275 __const char *__restrict __modes) __wur;
276 extern FILE *freopen64 (__const char *__restrict __filename,
277 __const char *__restrict __modes,
278 FILE *__restrict __stream) __wur;
289 extern FILE *fopencookie (void *__restrict __magic_cookie,
290 __const char *__restrict __modes,
307 extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __THROW;
311 extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf,
318 extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf,
331 extern int fprintf (FILE *__restrict __stream,
332 __const char *__restrict __format, ...);
337 extern int printf (__const char *__restrict __format, ...);
339 extern int sprintf (char *__restrict __s,
340 __const char *__restrict __format, ...) __THROW;
346 extern int vfprintf (FILE *__restrict __s, __const char *__restrict __format,
352 extern int vprintf (__const char *__restrict __format, _G_va_list __arg);
354 extern int vsprintf (char *__restrict __s, __const char *__restrict __format,
361 extern int snprintf (char *__restrict __s, size_t __maxlen,
362 __const char *__restrict __format, ...)
365 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
366 __const char *__restrict __format, _G_va_list __arg)
374 extern int vasprintf (char **__restrict __ptr, __const char *__restrict __f,
377 extern int __asprintf (char **__restrict __ptr,
378 __const char *__restrict __fmt, ...)
380 extern int asprintf (char **__restrict __ptr,
381 __const char *__restrict __fmt, ...)
390 extern int vdprintf (int __fd, __const char *__restrict __fmt,
393 extern int dprintf (int __fd, __const char *__restrict __fmt, ...)
403 extern int fscanf (FILE *__restrict __stream,
404 __const char *__restrict __format, ...) __wur;
409 extern int scanf (__const char *__restrict __format, ...) __wur;
411 extern int sscanf (__const char *__restrict __s,
412 __const char *__restrict __format, ...) __THROW;
421 extern int __REDIRECT (fscanf, (FILE *__restrict __stream,
422 __const char *__restrict __format, ...),
424 extern int __REDIRECT (scanf, (__const char *__restrict __format, ...),
426 extern int __REDIRECT (sscanf, (__const char *__restrict __s,
427 __const char *__restrict __format, ...),
430 extern int __isoc99_fscanf (FILE *__restrict __stream,
431 __const char *__restrict __format, ...) __wur;
432 extern int __isoc99_scanf (__const char *__restrict __format, ...) __wur;
433 extern int __isoc99_sscanf (__const char *__restrict __s,
434 __const char *__restrict __format, ...) __THROW;
449 extern int vfscanf (FILE *__restrict __s, __const char *__restrict __format,
457 extern int vscanf (__const char *__restrict __format, _G_va_list __arg)
461 extern int vsscanf (__const char *__restrict __s,
462 __const char *__restrict __format, _G_va_list __arg)
473 (FILE *__restrict __s,
474 __const char *__restrict __format, _G_va_list __arg),
477 extern int __REDIRECT (vscanf, (__const char *__restrict __format,
481 (__const char *__restrict __s,
482 __const char *__restrict __format, _G_va_list __arg),
486 extern int __isoc99_vfscanf (FILE *__restrict __s,
487 __const char *__restrict __format,
489 extern int __isoc99_vscanf (__const char *__restrict __format,
491 extern int __isoc99_vsscanf (__const char *__restrict __s,
492 __const char *__restrict __format,
600 extern char *fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
618 extern char *fgets_unlocked (char *__restrict __s, int __n,
619 FILE *__restrict __stream) __wur;
634 extern _IO_ssize_t __getdelim (char **__restrict __lineptr,
635 size_t *__restrict __n, int __delimiter,
636 FILE *__restrict __stream) __wur;
637 extern _IO_ssize_t getdelim (char **__restrict __lineptr,
638 size_t *__restrict __n, int __delimiter,
639 FILE *__restrict __stream) __wur;
647 extern _IO_ssize_t getline (char **__restrict __lineptr,
648 size_t *__restrict __n,
649 FILE *__restrict __stream) __wur;
658 extern int fputs (__const char *__restrict __s, FILE *__restrict __stream);
678 extern size_t fread (void *__restrict __ptr, size_t __size,
679 size_t __n, FILE *__restrict __stream) __wur;
684 extern size_t fwrite (__const void *__restrict __ptr, size_t __size,
685 size_t __n, FILE *__restrict __s) __wur;
695 extern int fputs_unlocked (__const char *__restrict __s,
696 FILE *__restrict __stream);
706 extern size_t fread_unlocked (void *__restrict __ptr, size_t __size,
707 size_t __n, FILE *__restrict __stream) __wur;
708 extern size_t fwrite_unlocked (__const void *__restrict __ptr, size_t __size,
709 size_t __n, FILE *__restrict __stream) __wur;
767 extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
775 extern int __REDIRECT (fgetpos, (FILE *__restrict __stream,
776 fpos_t *__restrict __pos), fgetpos64);
789 extern int fgetpos64 (FILE *__restrict __stream, fpos64_t *__restrict __pos);
868 extern int obstack_printf (struct obstack *__restrict __obstack,
869 __const char *__restrict __format, ...)
871 extern int obstack_vprintf (struct obstack *__restrict __obstack,
872 __const char *__restrict __format,