Home
last modified time | relevance | path

Searched refs:newcount (Results 1 – 25 of 41) sorted by relevance

12

/netbsd-src/usr.bin/fpr/
H A Dfpr.c278 int newcount; in savech() local
310 newcount = cp->count + 1; in savech()
311 if (newcount > cp->width) { in savech()
312 cp->width = newcount; in savech()
313 sp = realloc(cp->str, (unsigned) newcount * sizeof(char)); in savech()
318 cp->count = newcount; in savech()
319 cp->str[newcount - 1] = ch; in savech()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/
H A Dformat-lisp.c343 ensure_initial_alloc (struct format_arg_list *list, unsigned int newcount) in ensure_initial_alloc() argument
345 if (newcount > list->initial.allocated) in ensure_initial_alloc()
348 MAX (2 * list->initial.allocated + 1, newcount); in ensure_initial_alloc()
373 ensure_repeated_alloc (struct format_arg_list *list, unsigned int newcount) in ensure_repeated_alloc() argument
375 if (newcount > list->repeated.allocated) in ensure_repeated_alloc()
378 MAX (2 * list->repeated.allocated + 1, newcount); in ensure_repeated_alloc()
528 unsigned int newcount = list->repeated.count + 1; in normalize_outermost_list() local
529 ensure_repeated_alloc (list, newcount); in normalize_outermost_list()
530 for (i = newcount - 1; i > 0; i--) in normalize_outermost_list()
532 list->repeated.count = newcount; in normalize_outermost_list()
[all …]
H A Dformat-scheme.c346 ensure_initial_alloc (struct format_arg_list *list, unsigned int newcount) in ensure_initial_alloc() argument
348 if (newcount > list->initial.allocated) in ensure_initial_alloc()
351 MAX (2 * list->initial.allocated + 1, newcount); in ensure_initial_alloc()
376 ensure_repeated_alloc (struct format_arg_list *list, unsigned int newcount) in ensure_repeated_alloc() argument
378 if (newcount > list->repeated.allocated) in ensure_repeated_alloc()
381 MAX (2 * list->repeated.allocated + 1, newcount); in ensure_repeated_alloc()
531 unsigned int newcount = list->repeated.count + 1; in normalize_outermost_list() local
532 ensure_repeated_alloc (list, newcount); in normalize_outermost_list()
533 for (i = newcount - 1; i > 0; i--) in normalize_outermost_list()
535 list->repeated.count = newcount; in normalize_outermost_list()
[all …]
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dglob.c914 size_t newcount = pglob->gl_pathc + pglob->gl_offs; in __glob() local
917 if (newcount > SIZE_MAX / sizeof (char *) - 2) in __glob()
928 (newcount + 2) * sizeof (char *)); in __glob()
936 pglob->gl_pathv[newcount] = malloc (dirlen + 2); in __glob()
937 if (pglob->gl_pathv[newcount] == NULL) in __glob()
939 p = mempcpy (pglob->gl_pathv[newcount], dirname, dirlen); in __glob()
948 pglob->gl_pathv[newcount] = dirname; in __glob()
951 pglob->gl_pathv[newcount] = strdup (dirname); in __glob()
952 if (pglob->gl_pathv[newcount] == NULL) in __glob()
956 pglob->gl_pathv[++newcount] = NULL; in __glob()
[all …]
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dglob.c704 int newcount = pglob->gl_pathc + pglob->gl_offs; local
708 = realloc (pglob->gl_pathv, (newcount + 1 + 1) * sizeof (char *));
719 pglob->gl_pathv[newcount] = strdup (dirname);
720 if (pglob->gl_pathv[newcount] == NULL)
722 pglob->gl_pathv[++newcount] = NULL;
819 int newcount = pglob->gl_pathc + pglob->gl_offs; local
823 (newcount + 2) * sizeof (char *));
831 pglob->gl_pathv[newcount] = strdup (pattern);
832 if (pglob->gl_pathv[newcount] == NULL)
841 ++newcount;
[all …]
/netbsd-src/external/mpl/bind/dist/lib/isc/
H A Dht.c83 rehash_bits(isc_ht_t *ht, size_t newcount);
94 maybe_rehash(isc_ht_t *ht, size_t newcount);
126 rehash_bits(isc_ht_t *ht, size_t newcount) { in memcasecmp()
129 while (newcount >= HASHSIZE(newbits) && newbits <= HT_MAX_BITS) { in memcasecmp()
197 maybe_rehash(isc_ht_t *ht, size_t newcount) { in hashtable_rehash()
198 uint32_t newbits = rehash_bits(ht, newcount); in hashtable_rehash()
166 rehash_bits(isc_ht_t * ht,size_t newcount) rehash_bits() argument
237 maybe_rehash(isc_ht_t * ht,size_t newcount) maybe_rehash() argument
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/
H A Dht.c82 rehash_bits(isc_ht_t *ht, size_t newcount);
93 maybe_rehash(isc_ht_t *ht, size_t newcount);
166 rehash_bits(isc_ht_t *ht, size_t newcount) { in rehash_bits() argument
169 while (newcount >= HASHSIZE(newbits) && newbits <= HT_MAX_BITS) { in rehash_bits()
237 maybe_rehash(isc_ht_t *ht, size_t newcount) { in maybe_rehash() argument
238 uint32_t newbits = rehash_bits(ht, newcount); in maybe_rehash()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DStringBuilder.cc150 int newcount = count + len; in append() local
151 if (newcount > maxCapacity) in append()
152 expandCapacity (newcount); in append()
154 count = newcount; in append()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DStringBuilder.cc151 int newcount = count + len; in append() local
152 if (newcount > maxCapacity) in append()
153 expandCapacity (newcount); in append()
155 count = newcount; in append()
/netbsd-src/external/bsd/file/dist/src/
H A Dcdf.c946 size_t newcount = *maxcount + incr; in cdf_grow_info() local
948 if (newcount > CDF_PROP_LIMIT) { in cdf_grow_info()
950 SIZE_T_FORMAT "u\n", newcount, CDF_PROP_LIMIT)); in cdf_grow_info()
954 CDF_REALLOC(*info, newcount * sizeof(*inp))); in cdf_grow_info()
959 *maxcount = newcount; in cdf_grow_info()
/netbsd-src/external/mpl/bind/dist/lib/dns/
H A Drbt.c198 rehash_bits(dns_rbt_t *rbt, size_t newcount); in Name()
1486 rehash_bits(dns_rbt_t *rbt, size_t newcount) { in dns_rbt_deletenode()
1489 while (newcount >= ISC_HASHSIZE(newbits) && newbits < ISC_HASH_MAX_BITS)
1560 maybe_rehash(dns_rbt_t *rbt, size_t newcount) { in create_node()
1561 uint32_t newbits = rehash_bits(rbt, newcount); in create_node()
1667 rehash_bits(dns_rbt_t * rbt,size_t newcount) rehash_bits() argument
1740 maybe_rehash(dns_rbt_t * rbt,size_t newcount) maybe_rehash() argument
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Dmerge.c99 #define NEEDS_RESIZE(newcount, nbuckets) ((newcount) > (nbuckets) / 3 * 2) argument
/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Drbt.c422 rehash_bits(dns_rbt_t *rbt, size_t newcount);
2386 rehash_bits(dns_rbt_t *rbt, size_t newcount) { in rehash_bits() argument
2389 while (newcount >= HASHSIZE(newbits) && newbits < RBT_HASH_MAX_BITS) { in rehash_bits()
2434 maybe_rehash(dns_rbt_t *rbt, size_t newcount) { in maybe_rehash() argument
2435 uint32_t newbits = rehash_bits(rbt, newcount); in maybe_rehash()
/netbsd-src/external/gpl3/gdb.old/dist/texinfo/
H A Dtexinfo.tex1250 \newcount\tempnum
1251 \newcount\lnkcount
1253 \newcount\filenamelength
1254 \newcount\pgn
1260 \newcount\countA
2503 \newcount\fontdepth \fontdepth=0
3417 \newcount \itemno
3651 \newcount\colcount
3861 \newcount\doignorecount
4529 \newcount\whatsitpenalty
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/texinfo/
H A Dtexinfo.tex1250 \newcount\tempnum
1251 \newcount\lnkcount
1253 \newcount\filenamelength
1254 \newcount\pgn
1260 \newcount\countA
2503 \newcount\fontdepth \fontdepth=0
3417 \newcount \itemno
3651 \newcount\colcount
3861 \newcount\doignorecount
4529 \newcount\whatsitpenalty
[all …]
/netbsd-src/external/gpl3/binutils/dist/texinfo/
H A Dtexinfo.tex1250 \newcount\tempnum
1251 \newcount\lnkcount
1253 \newcount\filenamelength
1254 \newcount\pgn
1260 \newcount\countA
2503 \newcount\fontdepth \fontdepth=0
3417 \newcount \itemno
3651 \newcount\colcount
3861 \newcount\doignorecount
4529 \newcount\whatsitpenalty
[all …]
/netbsd-src/external/gpl2/xcvs/dist/build-aux/
H A Dtexinfo.tex1250 \newcount\tempnum
1251 \newcount\lnkcount
1253 \newcount\filenamelength
1254 \newcount\pgn
1260 \newcount\countA
2506 \newcount\fontdepth \fontdepth=0
3420 \newcount \itemno
3654 \newcount\colcount
3864 \newcount\doignorecount
4533 \newcount\whatsitpenalty
[all …]
/netbsd-src/external/gpl3/gdb/dist/texinfo/
H A Dtexinfo.tex1250 \newcount\tempnum
1251 \newcount\lnkcount
1253 \newcount\filenamelength
1254 \newcount\pgn
1260 \newcount\countA
2503 \newcount\fontdepth \fontdepth=0
3417 \newcount \itemno
3651 \newcount\colcount
3861 \newcount\doignorecount
4529 \newcount\whatsitpenalty
[all …]
/netbsd-src/external/gpl2/diffutils/dist/config/
H A Dtexinfo.tex930 \newcount\tempnum
931 \newcount\lnkcount
933 \newcount\filenamelength
934 \newcount\pgn
940 \newcount\countA
1170 \newcount\mainmagstep
1342 \newcount\fontdepth \fontdepth=0
1963 \newcount \itemno
2198 \newcount\colcount
3409 \newcount\chapno
[all …]
/netbsd-src/external/gpl2/grep/dist/doc/
H A Dtexinfo.tex892 \newcount\tempnum
893 \newcount\lnkcount
895 \newcount\filenamelength
896 \newcount\pgn
902 \newcount\countA
1076 \newcount\mainmagstep
1272 \newcount\fontdepth \fontdepth=0
1885 \newcount \itemno
2120 \newcount\colcount
3291 \newcount\chapno
[all …]
/netbsd-src/external/lgpl3/mpfr/dist/doc/
H A Dtexinfo.tex855 \newcount\centerpenalty
984 \newcount\tempnum
985 \newcount\lnkcount
987 \newcount\filenamelength
988 \newcount\pgn
995 \newcount\countA
1134 \newcount\pagecount \pagecount=0
1135 \newcount\romancount \romancount=0
1136 \newcount\arabiccount \arabiccount=0
2745 \newcount\fontdepth \fontdepth=0
[all …]
/netbsd-src/external/gpl2/gmake/dist/config/
H A Dtexinfo.tex1160 \newcount\tempnum
1161 \newcount\lnkcount
1163 \newcount\filenamelength
1164 \newcount\pgn
1170 \newcount\countA
1753 \newcount\fontdepth \fontdepth=0
2528 \newcount \itemno
2752 \newcount\colcount
2955 \newcount\doignorecount
3977 \newcount\unnumberedno \unnumberedno = 10000
[all …]
/netbsd-src/external/gpl2/texinfo/dist/doc/
H A Dtexinfo.tex1152 \newcount\tempnum
1153 \newcount\lnkcount
1155 \newcount\filenamelength
1156 \newcount\pgn
1162 \newcount\countA
1701 \newcount\fontdepth \fontdepth=0
2434 \newcount \itemno
2658 \newcount\colcount
2861 \newcount\doignorecount
3888 \newcount\unnumberedno \unnumberedno = 10000
[all …]
/netbsd-src/external/gpl2/groff/dist/doc/
H A Dtexinfo.tex1152 \newcount\tempnum
1153 \newcount\lnkcount
1155 \newcount\filenamelength
1156 \newcount\pgn
1162 \newcount\countA
1701 \newcount\fontdepth \fontdepth=0
2434 \newcount \itemno
2658 \newcount\colcount
2861 \newcount\doignorecount
3888 \newcount\unnumberedno \unnumberedno = 10000
[all …]
/netbsd-src/external/bsd/am-utils/dist/doc/
H A Dtexinfo.tex914 \newcount\centerpenalty
1080 \newcount\tempnum
1081 \newcount\lnkcount
1083 \newcount\filenamelength
1084 \newcount\pgn
1090 \newcount\countA
2358 \newcount\fontdepth \fontdepth=0
3628 \newcount \itemno
3862 \newcount\colcount
4072 \newcount\doignorecount
[all …]

12