Home
last modified time | relevance | path

Searched refs:maxcnt (Results 1 – 6 of 6) sorted by relevance

/NextBSD/lib/libkvm/
HDkvm_proc.c116 struct kinfo_proc *bp, int maxcnt) in kvm_proclist() argument
143 for (; cnt < maxcnt && p != NULL; p = LIST_NEXT(&proc, p_list)) { in kvm_proclist()
217 if (cnt >= maxcnt) { in kvm_proclist()
470 u_long a_zombproc, int maxcnt) in kvm_deadprocs() argument
480 acnt = kvm_proclist(kd, what, arg, p, bp, maxcnt); in kvm_deadprocs()
488 zcnt = kvm_proclist(kd, what, arg, p, bp + acnt, maxcnt - acnt); in kvm_deadprocs()
/NextBSD/contrib/top/
HDdisplay.c1047 register char maxcnt = 0; local
1067 msglen += maxcnt;
1103 if (cnt > maxcnt)
1105 maxcnt = cnt;
1115 msglen += overstrike ? maxcnt : cnt;
/NextBSD/sys/netinet6/
HDin6.c1578 int i, cnt = 0, maxcnt = 0, idx = 0, index = 0; in ip6_sprintf() local
1592 else if (maxcnt < cnt) { in ip6_sprintf()
1593 maxcnt = cnt; in ip6_sprintf()
1598 if (maxcnt < cnt) { in ip6_sprintf()
1599 maxcnt = cnt; in ip6_sprintf()
/NextBSD/sys/fs/nfsserver/
HDnfs_nfsdstate.c821 nfsrv_dumpclients(struct nfsd_dumpclients *dumpp, int maxcnt) in nfsrv_dumpclients() argument
837 while (i < nfsrv_clienthashsize && cnt < maxcnt) { in nfsrv_dumpclients()
839 while (clp != LIST_END(&nfsclienthash[i]) && cnt < maxcnt) { in nfsrv_dumpclients()
846 if (cnt < maxcnt) in nfsrv_dumpclients()
913 nfsrv_dumplocks(vnode_t vp, struct nfsd_dumplocks *ldumpp, int maxcnt, in nfsrv_dumplocks() argument
950 while (stp != LIST_END(&lfp->lf_open) && cnt < maxcnt) { in nfsrv_dumplocks()
981 while (lop != LIST_END(&lfp->lf_lock) && cnt < maxcnt) { in nfsrv_dumplocks()
1013 while (stp != LIST_END(&lfp->lf_deleg) && cnt < maxcnt) { in nfsrv_dumplocks()
1040 if (cnt < maxcnt) in nfsrv_dumplocks()
/NextBSD/contrib/binutils/bfd/
HDelfxx-mips.c3091 unsigned int maxcnt = arg->max_count; in mips_elf_merge_gots() local
3101 if (primary_total > maxcnt) in mips_elf_merge_gots()
3107 if (! arg->primary && lcount + gcount + tcount <= maxcnt in mips_elf_merge_gots()
3117 && (arg->primary_count + lcount + gcount + tcount) <= maxcnt) in mips_elf_merge_gots()
3146 && arg->current_count + lcount + gcount + tcount <= maxcnt) in mips_elf_merge_gots()
HDChangeLog-2006355 * elfxx-mips.c (mips_elf_merge_gots): Always use maxcnt.