Home
last modified time | relevance | path

Searched refs:newvsize (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/
Dgcc.c1046 int newvsize = (argc + 2) * 2 * sizeof (const char *); local
1048 (const char **) xmalloc (newvsize);
1077 newvsize += spaces * sizeof (const char *);
1078 newv = (const char **) xrealloc (newv, newvsize);
/openbsd/src/gnu/gcc/gcc/
Dgcc.c1173 int newvsize = (argc + 2) * 2 * sizeof (const char *); in translate_options() local
1174 const char **newv = xmalloc (newvsize); in translate_options()
1203 newvsize += spaces * sizeof (const char *); in translate_options()
1204 newv = xrealloc (newv, newvsize); in translate_options()