Home
last modified time | relevance | path

Searched refs:tempbufsize (Results 1 – 13 of 13) sorted by relevance

/openbsd/src/gnu/usr.bin/binutils/gdb/
Df-exp.y854 static int tempbufsize; /* Size of allocated buffer */ variable
861 if (tempbufindex + (size) >= tempbufsize) \
878 tempbufsize += growby;
880 tempbuf = (char *) malloc (tempbufsize);
882 tempbuf = (char *) realloc (tempbuf, tempbufsize);
Dada-lex.l345 if (tempbufsize < n)
347 tempbufsize = (n+63) & ~63;
348 tempbuf = xrealloc (tempbuf, tempbufsize);
Dobjc-exp.y1261 static int tempbufsize; in yylex() local
1478 if (tempbufindex + 1 >= tempbufsize) in yylex()
1480 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
1521 if (tempbufindex + 1 >= tempbufsize) in yylex()
1523 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
Df-exp.c2249 static int tempbufsize; /* Size of allocated buffer */ variable
2256 if (tempbufindex + (size) >= tempbufsize) \
2273 tempbufsize += growby;
2275 tempbuf = (char *) xmalloc (tempbufsize);
2277 tempbuf = (char *) xrealloc (tempbuf, tempbufsize);
Djv-exp.y875 static int tempbufsize; in yylex() local
1069 if (tempbufindex + 1 >= tempbufsize) in yylex()
1071 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
Dobjc-exp.c2924 static int tempbufsize; in yylex() local
3141 if (tempbufindex + 1 >= tempbufsize) in yylex()
3143 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
3184 if (tempbufindex + 1 >= tempbufsize) in yylex()
3186 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
Dp-exp.y1080 static int tempbufsize; in yylex() local
1282 if (tempbufindex + 1 >= tempbufsize) in yylex()
1284 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
Dc-exp.y1312 static int tempbufsize; in yylex() local
1547 if (tempbufindex + 1 >= tempbufsize) in yylex()
1549 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
Djv-exp.c2262 static int tempbufsize; in yylex() local
2456 if (tempbufindex + 1 >= tempbufsize) in yylex()
2458 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
Dp-exp.c2423 static int tempbufsize; in yylex() local
2625 if (tempbufindex + 1 >= tempbufsize) in yylex()
2627 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
Dc-exp.c2964 static int tempbufsize; in yylex() local
3199 if (tempbufindex + 1 >= tempbufsize) in yylex()
3201 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
DChangeLog-1992731 * c-exp.y (yylex): Add tempbuf, tempbufindex, and tempbufsize,
DChangeLog-19937323 * ch-exp.y (tempbuf, tempbufsize, tempbufindex, GROWBY_MIN_SIZE,