• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:newcount

338 /* Ensure list->initial.allocated >= newcount.  */
340 ensure_initial_alloc (struct format_arg_list *list, unsigned int newcount)
342 if (newcount > list->initial.allocated)
345 MAX (2 * list->initial.allocated + 1, newcount);
368 /* Ensure list->repeated.allocated >= newcount. */
370 ensure_repeated_alloc (struct format_arg_list *list, unsigned int newcount)
372 if (newcount > list->repeated.allocated)
375 MAX (2 * list->repeated.allocated + 1, newcount);
525 unsigned int newcount = list->repeated.count + 1;
526 ensure_repeated_alloc (list, newcount);
527 for (i = newcount - 1; i > 0; i--)
529 list->repeated.count = newcount;
660 unsigned int newcount = list->repeated.count * m;
661 ensure_repeated_alloc (list, newcount);
666 list->repeated.count = newcount;
684 unsigned int i, newcount;
686 newcount = list->initial.count + 1;
687 ensure_initial_alloc (list, newcount);
691 list->initial.count = newcount;
720 unsigned int i, j, k, newcount;
723 newcount = i + q * list->repeated.count + s + (t > 0 ? 1 : 0);
724 ensure_initial_alloc (list, newcount);
738 ASSERT (i == newcount);
739 list->initial.count = newcount;
753 unsigned int i, j, oldcount, newcount;
757 newcount = list->repeated.count + (t > 0 ? 1 : 0);
758 newelement = XNMALLOC (newcount, struct format_arg);
787 unsigned int newcount;
812 newcount = list->initial.count + 1;
813 ensure_initial_alloc (list, newcount);
819 list->initial.count = newcount;
862 unsigned int newcount =
864 ensure_initial_alloc (list, newcount);
895 list->initial.count = newcount;
1049 unsigned int i, j, newcount;
1051 newcount = list->initial.count + list->repeated.count;
1052 ensure_initial_alloc (list, newcount);
1056 list->initial.count = newcount;
2088 unsigned int p, n, i, si, ti, j, sj, tj, splitindex, newcount;
2259 newcount = list->initial.count - splitindex;
2260 if (newcount > list->repeated.allocated)
2262 list->repeated.allocated = newcount;
2263 list->repeated.element = XNMALLOC (newcount, struct format_arg);
2267 list->repeated.count = newcount;