Searched refs:tempbufsize (Results 1 – 13 of 13) sorted by relevance
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | f-exp.y | 854 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);
|
H A D | ada-lex.l | 345 if (tempbufsize < n) 347 tempbufsize = (n+63) & ~63; 348 tempbuf = xrealloc (tempbuf, tempbufsize);
|
H A D | objc-exp.y | 1261 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()
|
H A D | f-exp.c | 2249 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);
|
H A D | jv-exp.y | 875 static int tempbufsize; in yylex() local 1069 if (tempbufindex + 1 >= tempbufsize) in yylex() 1071 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
|
H A D | objc-exp.c | 2924 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()
|
H A D | p-exp.y | 1080 static int tempbufsize; in yylex() local 1282 if (tempbufindex + 1 >= tempbufsize) in yylex() 1284 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
|
H A D | c-exp.y | 1312 static int tempbufsize; in yylex() local 1547 if (tempbufindex + 1 >= tempbufsize) in yylex() 1549 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64); in yylex()
|
H A D | jv-exp.c | 2262 static int tempbufsize; in yylex() local 2456 if (tempbufindex + 1 >= tempbufsize) in yylex() 2458 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
|
H A D | p-exp.c | 2423 static int tempbufsize; in yylex() local 2625 if (tempbufindex + 1 >= tempbufsize) in yylex() 2627 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
|
H A D | c-exp.c | 2964 static int tempbufsize; in yylex() local 3199 if (tempbufindex + 1 >= tempbufsize) in yylex() 3201 tempbuf = (char *) xrealloc (tempbuf, tempbufsize += 64); in yylex()
|
H A D | ChangeLog-1992 | 731 * c-exp.y (yylex): Add tempbuf, tempbufindex, and tempbufsize,
|
H A D | ChangeLog-1993 | 7323 * ch-exp.y (tempbuf, tempbufsize, tempbufindex, GROWBY_MIN_SIZE,
|