• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:newcount

341 /* Ensure list->initial.allocated >= newcount.  */
343 ensure_initial_alloc (struct format_arg_list *list, unsigned int newcount)
345 if (newcount > list->initial.allocated)
348 MAX (2 * list->initial.allocated + 1, newcount);
371 /* Ensure list->repeated.allocated >= newcount. */
373 ensure_repeated_alloc (struct format_arg_list *list, unsigned int newcount)
375 if (newcount > list->repeated.allocated)
378 MAX (2 * list->repeated.allocated + 1, newcount);
528 unsigned int newcount = list->repeated.count + 1;
529 ensure_repeated_alloc (list, newcount);
530 for (i = newcount - 1; i > 0; i--)
532 list->repeated.count = newcount;
663 unsigned int newcount = list->repeated.count * m;
664 ensure_repeated_alloc (list, newcount);
669 list->repeated.count = newcount;
687 unsigned int i, newcount;
689 newcount = list->initial.count + 1;
690 ensure_initial_alloc (list, newcount);
694 list->initial.count = newcount;
723 unsigned int i, j, k, newcount;
726 newcount = i + q * list->repeated.count + s + (t > 0 ? 1 : 0);
727 ensure_initial_alloc (list, newcount);
741 ASSERT (i == newcount);
742 list->initial.count = newcount;
756 unsigned int i, j, oldcount, newcount;
760 newcount = list->repeated.count + (t > 0 ? 1 : 0);
761 newelement = XNMALLOC (newcount, struct format_arg);
790 unsigned int newcount;
815 newcount = list->initial.count + 1;
816 ensure_initial_alloc (list, newcount);
822 list->initial.count = newcount;
865 unsigned int newcount =
867 ensure_initial_alloc (list, newcount);
898 list->initial.count = newcount;
1062 unsigned int i, j, newcount;
1064 newcount = list->initial.count + list->repeated.count;
1065 ensure_initial_alloc (list, newcount);
1069 list->initial.count = newcount;
2111 unsigned int p, n, i, si, ti, j, sj, tj, splitindex, newcount;
2282 newcount = list->initial.count - splitindex;
2283 if (newcount > list->repeated.allocated)
2285 list->repeated.allocated = newcount;
2286 list->repeated.element = XNMALLOC (newcount, struct format_arg);
2290 list->repeated.count = newcount;