• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching refs:bufmax

277   static size_t bufmax = 0;
283 /* Allocate the initial buffer. Later on, bufmax > 0. */
284 if (bufmax == 0)
288 bufmax = 1;
363 if (bufpos + read_bytes >= bufmax)
366 bufmax = 2 * bufmax + 10;
367 while (bufpos + read_bytes >= bufmax);
368 buffer = xrealloc (buffer, bufmax);
425 static size_t bufmax;
454 if (buflen >= bufmax)
456 bufmax = 2 * bufmax + 10;
457 buffer = xrealloc (buffer, bufmax);
461 if (buflen >= bufmax)
463 bufmax = 2 * bufmax + 10;
464 buffer = xrealloc (buffer, bufmax);
638 int bufmax = 10;
639 char *buffer = XNMALLOC (bufmax, char);
672 if (bufpos + 2 > bufmax)
674 bufmax = 2 * bufmax + 10;
675 buffer = xrealloc (buffer, bufmax);
694 if (bufpos + len >= bufmax)
697 bufmax = 2 * bufmax + 10;
698 while (bufpos + len >= bufmax);
699 buffer = xrealloc (buffer, bufmax);
894 static int bufmax = 0;
936 if (bufpos + 7 > bufmax)
938 bufmax = 2 * bufmax + 10;
939 buffer = xrealloc (buffer, bufmax);
1259 if (bufpos >= bufmax)
1261 bufmax = 2 * bufmax + 10;
1262 buffer = xrealloc (buffer, bufmax);
1285 static int bufmax = 0;
1306 if (bufpos >= bufmax)
1308 bufmax = 2 * bufmax + 10;
1309 buffer = xrealloc (buffer, bufmax);
1335 if (bufpos >= bufmax)
1337 bufmax = 2 * bufmax + 10;
1338 buffer = xrealloc (buffer, bufmax);
1362 if (bufpos >= bufmax)
1364 bufmax = 2 * bufmax + 10;
1365 buffer = xrealloc (buffer, bufmax);
1391 if (bufpos >= bufmax)
1393 bufmax = 2 * bufmax + 10;
1394 buffer = xrealloc (buffer, bufmax);
1410 if (bufpos >= bufmax)
1412 bufmax = 2 * bufmax + 10;
1413 buffer = xrealloc (buffer, bufmax);
1419 if (bufpos >= bufmax)
1421 bufmax = 2 * bufmax + 10;
1422 buffer = xrealloc (buffer, bufmax);
1653 static int bufmax = 0;
1719 if (bufpos + 1 >= bufmax)
1721 bufmax = 2 * bufmax + 10;
1722 buffer = xrealloc (buffer, bufmax);
2009 static int bufmax;
2090 if (bufpos >= bufmax)
2092 bufmax = 2 * bufmax + 10;
2093 buffer = xrealloc (buffer, bufmax);
2120 if (bufpos >= bufmax)
2122 bufmax = 2 * bufmax + 10;
2123 buffer = xrealloc (buffer, bufmax);
2443 if (bufpos >= bufmax)
2445 bufmax = 2 * bufmax + 10;
2446 buffer = xrealloc (buffer, bufmax);
2460 if (bufpos >= bufmax)
2462 bufmax = 2 * bufmax + 10;
2463 buffer = xrealloc (buffer, bufmax);