HomeSort by: relevance | last modified time | path
    Searched defs:newmax (Results 1 - 9 of 9) sorted by relevancy

  /src/games/sail/
array.c 75 unsigned newmax; local
78 newmax = a->max;
79 while (num > newmax) {
80 newmax = newmax ? newmax*2 : 4;
82 if (reallocarr(&a->v, newmax, sizeof(*a->v)) != 0)
84 a->max = newmax;
  /src/external/bsd/tradcpp/dist/
array.c 73 unsigned newmax; local
77 newmax = a->max;
78 while (num > newmax) {
79 newmax = newmax ? newmax*2 : 4;
82 newmax * sizeof(a->v[0]));
84 a->max = newmax;
  /src/sys/fs/nfs/client/
nfs_clnfsiod.c 136 int iod, newmax; local
138 newmax = ncl_iodmax;
139 error = sysctl_handle_int(oidp, &newmax, 0, req);
142 if (newmax > NFS_MAXASYNCDAEMON)
145 ncl_iodmax = newmax;
  /src/external/mpl/bind/dist/lib/isc/
symtab.c 174 unsigned int i, newsize, newmax; local
179 newmax = newsize * 3 / 4;
180 INSIST(newsize > 0U && newmax > 0U);
207 symtab->maxload = newmax;
  /src/external/mpl/dhcp/bind/dist/lib/isc/
symtab.c 179 unsigned int i, newsize, newmax; local
184 newmax = newsize * 3 / 4;
185 INSIST(newsize > 0U && newmax > 0U);
212 symtab->maxload = newmax;
  /src/lib/libquota/
quota_oldfiles.c 99 unsigned newmax; local
104 newmax = 4;
106 newmax = __quota_oldfiles_maxfstab * 2;
109 newmax * sizeof(__quota_oldfiles_fstab[0]));
113 __quota_oldfiles_maxfstab = newmax;
  /src/external/bsd/byacc/dist/
output.c 846 int newmax; local
872 newmax = maxtable;
875 newmax += 200;
877 while (newmax <= loc);
879 table = TREALLOC(Value_t, table, newmax);
882 check = TREALLOC(Value_t, check, newmax);
885 for (l = maxtable; l < newmax; ++l)
890 maxtable = newmax;
  /src/external/gpl3/binutils/dist/gprofng/common/
hwctable.c 1403 int newmax = lst->max ? lst->max * 2 : 16; local
1404 new = (void**) realloc (lst->array, newmax * sizeof (void*));
1406 lst->max = newmax;
  /src/external/gpl3/binutils.old/dist/gprofng/common/
hwctable.c 1403 int newmax = lst->max ? lst->max * 2 : 16; local
1404 new = (void**) realloc (lst->array, newmax * sizeof (void*));
1406 lst->max = newmax;

Completed in 37 milliseconds