Lines Matching refs:__restrict
43 extern error_t __argz_create (char *__const __argv[], char **__restrict __argz,
44 size_t *__restrict __len) __THROW;
45 extern error_t argz_create (char *__const __argv[], char **__restrict __argz,
46 size_t *__restrict __len) __THROW;
52 extern error_t __argz_create_sep (__const char *__restrict __string,
53 int __sep, char **__restrict __argz,
54 size_t *__restrict __len) __THROW;
55 extern error_t argz_create_sep (__const char *__restrict __string,
56 int __sep, char **__restrict __argz,
57 size_t *__restrict __len) __THROW;
67 extern void __argz_extract (__const char *__restrict __argz, size_t __len,
68 char **__restrict __argv) __THROW;
69 extern void argz_extract (__const char *__restrict __argz, size_t __len,
70 char **__restrict __argv) __THROW;
78 extern error_t __argz_append (char **__restrict __argz,
79 size_t *__restrict __argz_len,
80 __const char *__restrict __buf, size_t _buf_len)
82 extern error_t argz_append (char **__restrict __argz,
83 size_t *__restrict __argz_len,
84 __const char *__restrict __buf, size_t __buf_len)
88 extern error_t __argz_add (char **__restrict __argz,
89 size_t *__restrict __argz_len,
90 __const char *__restrict __str) __THROW;
91 extern error_t argz_add (char **__restrict __argz,
92 size_t *__restrict __argz_len,
93 __const char *__restrict __str) __THROW;
97 extern error_t __argz_add_sep (char **__restrict __argz,
98 size_t *__restrict __argz_len,
99 __const char *__restrict __string, int __delim)
101 extern error_t argz_add_sep (char **__restrict __argz,
102 size_t *__restrict __argz_len,
103 __const char *__restrict __string, int __delim)
107 extern void __argz_delete (char **__restrict __argz,
108 size_t *__restrict __argz_len,
109 char *__restrict __entry) __THROW;
110 extern void argz_delete (char **__restrict __argz,
111 size_t *__restrict __argz_len,
112 char *__restrict __entry) __THROW;
120 extern error_t __argz_insert (char **__restrict __argz,
121 size_t *__restrict __argz_len,
122 char *__restrict __before,
123 __const char *__restrict __entry) __THROW;
124 extern error_t argz_insert (char **__restrict __argz,
125 size_t *__restrict __argz_len,
126 char *__restrict __before,
127 __const char *__restrict __entry) __THROW;
132 extern error_t __argz_replace (char **__restrict __argz,
133 size_t *__restrict __argz_len,
134 __const char *__restrict __str,
135 __const char *__restrict __with,
136 unsigned int *__restrict __replace_count);
137 extern error_t argz_replace (char **__restrict __argz,
138 size_t *__restrict __argz_len,
139 __const char *__restrict __str,
140 __const char *__restrict __with,
141 unsigned int *__restrict __replace_count);
157 extern char *__argz_next (__const char *__restrict __argz, size_t __argz_len,
158 __const char *__restrict __entry) __THROW;
159 extern char *argz_next (__const char *__restrict __argz, size_t __argz_len,
160 __const char *__restrict __entry) __THROW;