Lines Matching refs:newstr
858 char *newstr; local
860 newstr = (char *) realloc (*strptr, strsize * 2);
861 if (newstr == NULL)
865 newstr = (char *) realloc (*strptr,
867 if (newstr == NULL)
878 *strptr = newstr;
879 str = newstr + strleng;
885 *strptr = newstr;
886 str = newstr + strleng;
954 char *newstr; local
956 newstr = (char *) realloc (*strptr, strleng + n + 1);
957 if (newstr == NULL)
968 *strptr = newstr;
969 str = newstr + strleng;
2249 char *newstr; local
2251 newstr = (char *) realloc (*strptr, 2 * strsize);
2252 if (newstr == NULL)
2256 newstr = (char *) realloc (*strptr,
2258 if (newstr == NULL)
2269 *strptr = newstr;
2270 str = newstr + strleng;
2276 *strptr = newstr;
2277 str = newstr + strleng;
2359 char *newstr; local
2361 newstr = (char *) realloc (*strptr, strleng + n + 1);
2362 if (newstr == NULL)
2373 *strptr = newstr;
2374 str = newstr + strleng;