/src/games/sail/ |
array.c | 75 unsigned newmax; local in function:array_setsize 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;
|
array.c | 75 unsigned newmax; local in function:array_setsize 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/sys/fs/nfs/client/ |
nfs_clnfsiod.c | 136 int iod, newmax; local in function:sysctl_iodmax 138 newmax = ncl_iodmax; 139 error = sysctl_handle_int(oidp, &newmax, 0, req); 142 if (newmax > NFS_MAXASYNCDAEMON) 145 ncl_iodmax = newmax;
|
nfs_clnfsiod.c | 136 int iod, newmax; local in function:sysctl_iodmax 138 newmax = ncl_iodmax; 139 error = sysctl_handle_int(oidp, &newmax, 0, req); 142 if (newmax > NFS_MAXASYNCDAEMON) 145 ncl_iodmax = newmax;
|
/src/lib/libquota/ |
quota_oldfiles.c | 99 unsigned newmax; local in function:__quota_oldfiles_add_fstabentry 104 newmax = 4; 106 newmax = __quota_oldfiles_maxfstab * 2; 109 newmax * sizeof(__quota_oldfiles_fstab[0])); 113 __quota_oldfiles_maxfstab = newmax;
|
quota_oldfiles.c | 99 unsigned newmax; local in function:__quota_oldfiles_add_fstabentry 104 newmax = 4; 106 newmax = __quota_oldfiles_maxfstab * 2; 109 newmax * sizeof(__quota_oldfiles_fstab[0])); 113 __quota_oldfiles_maxfstab = newmax;
|