Lines Matching refs:__restrict
165 extern double strtod (__const char *__restrict __nptr,
166 char **__restrict __endptr)
173 extern float strtof (__const char *__restrict __nptr,
174 char **__restrict __endptr) __THROW __nonnull ((1)) __wur;
176 extern long double strtold (__const char *__restrict __nptr,
177 char **__restrict __endptr)
184 extern long int strtol (__const char *__restrict __nptr,
185 char **__restrict __endptr, int __base)
188 extern unsigned long int strtoul (__const char *__restrict __nptr,
189 char **__restrict __endptr, int __base)
196 extern long long int strtoq (__const char *__restrict __nptr,
197 char **__restrict __endptr, int __base)
201 extern unsigned long long int strtouq (__const char *__restrict __nptr,
202 char **__restrict __endptr, int __base)
210 extern long long int strtoll (__const char *__restrict __nptr,
211 char **__restrict __endptr, int __base)
215 extern unsigned long long int strtoull (__const char *__restrict __nptr,
216 char **__restrict __endptr, int __base)
240 extern long int strtol_l (__const char *__restrict __nptr,
241 char **__restrict __endptr, int __base,
244 extern unsigned long int strtoul_l (__const char *__restrict __nptr,
245 char **__restrict __endptr,
250 extern long long int strtoll_l (__const char *__restrict __nptr,
251 char **__restrict __endptr, int __base,
256 extern unsigned long long int strtoull_l (__const char *__restrict __nptr,
257 char **__restrict __endptr,
261 extern double strtod_l (__const char *__restrict __nptr,
262 char **__restrict __endptr, __locale_t __loc)
265 extern float strtof_l (__const char *__restrict __nptr,
266 char **__restrict __endptr, __locale_t __loc)
269 extern long double strtold_l (__const char *__restrict __nptr,
270 char **__restrict __endptr,
360 extern int random_r (struct random_data *__restrict __buf,
361 int32_t *__restrict __result) __THROW __nonnull ((1, 2));
366 extern int initstate_r (unsigned int __seed, char *__restrict __statebuf,
368 struct random_data *__restrict __buf)
371 extern int setstate_r (char *__restrict __statebuf,
372 struct random_data *__restrict __buf)
428 extern int drand48_r (struct drand48_data *__restrict __buffer,
429 double *__restrict __result) __THROW __nonnull ((1, 2));
431 struct drand48_data *__restrict __buffer,
432 double *__restrict __result) __THROW __nonnull ((1, 2));
435 extern int lrand48_r (struct drand48_data *__restrict __buffer,
436 long int *__restrict __result)
439 struct drand48_data *__restrict __buffer,
440 long int *__restrict __result)
444 extern int mrand48_r (struct drand48_data *__restrict __buffer,
445 long int *__restrict __result)
448 struct drand48_data *__restrict __buffer,
449 long int *__restrict __result)
662 extern char *realpath (__const char *__restrict __name,
663 char *__restrict __resolved) __THROW __wur;
735 extern char *ecvt (double __value, int __ndigit, int *__restrict __decpt,
736 int *__restrict __sign) __THROW __nonnull ((3, 4)) __wur;
741 extern char *fcvt (double __value, int __ndigit, int *__restrict __decpt,
742 int *__restrict __sign) __THROW __nonnull ((3, 4)) __wur;
754 int *__restrict __decpt, int *__restrict __sign)
757 int *__restrict __decpt, int *__restrict __sign)
765 extern int ecvt_r (double __value, int __ndigit, int *__restrict __decpt,
766 int *__restrict __sign, char *__restrict __buf,
768 extern int fcvt_r (double __value, int __ndigit, int *__restrict __decpt,
769 int *__restrict __sign, char *__restrict __buf,
773 int *__restrict __decpt, int *__restrict __sign,
774 char *__restrict __buf, size_t __len)
777 int *__restrict __decpt, int *__restrict __sign,
778 char *__restrict __buf, size_t __len)
790 extern int mbtowc (wchar_t *__restrict __pwc,
791 __const char *__restrict __s, size_t __n) __THROW __wur;
798 extern size_t mbstowcs (wchar_t *__restrict __pwcs,
799 __const char *__restrict __s, size_t __n) __THROW;
801 extern size_t wcstombs (char *__restrict __s,
802 __const wchar_t *__restrict __pwcs, size_t __n)
823 extern int getsubopt (char **__restrict __optionp,
824 char *__const *__restrict __tokens,
825 char **__restrict __valuep)