/titanic_44/usr/src/cmd/sgs/gprof/common/ |
H A D | dfn.c | 222 for (tailp = cycleheadp; tailp->cnext; tailp = tailp->cnext) { in dfn_findcycle() 257 tailp->cnext = childp; in dfn_findcycle() 269 for (tailp = childp; tailp->cnext; in dfn_findcycle() 270 tailp = tailp->cnext) { in dfn_findcycle() 271 tailp->cnext->cyclehead = cycleheadp; in dfn_findcycle() 276 printname(tailp->cnext); in dfn_findcycle() 336 for (memberp = parentp; memberp; memberp = memberp->cnext) { in dfn_post_visit()
|
H A D | arcs.c | 207 for (childp = cyclenlp->cnext; childp; childp = childp->cnext) { in cycletime() 253 if (nlp->cyclehead == nlp && nlp->cnext != 0) { in cyclelink() 278 if (!(nlp->cyclehead == nlp && nlp->cnext != 0)) { in cyclelink() 307 cyclenlp->cnext = nlp; /* ptr to next member */ in cyclelink() 322 for (memberp = nlp; memberp; memberp = memberp->cnext) { in cyclelink() 330 for (memberp = nlp; memberp; memberp = memberp->cnext) { in cyclelink() 396 for (memp = headp->cnext; memp; memp = memp->cnext) { in inheritflags() 418 for (memp = headp; memp; memp = memp->cnext) { in inheritflags() 603 parentp->cnext = 0; in doarcs()
|
H A D | printgprof.c | 661 for (memberp = cyclep->cnext; memberp; memberp = memberp->cnext) { in printmembers() 693 todo = cyclep->cnext; in sortmembers() 694 cyclep->cnext = 0; in sortmembers() 697 for ((doing = todo) && (todo = doing->cnext); in sortmembers() 700 (doing = todo) && (todo = doing->cnext)) { in sortmembers() 701 for (prev = cyclep; prev->cnext; prev = prev->cnext) { in sortmembers() 702 if (membercmp(doing, prev->cnext) == GREATERTHAN) in sortmembers() 705 doing->cnext = prev->cnext; in sortmembers() 706 prev->cnext = doing; in sortmembers()
|
H A D | gprof.h | 250 struct nl *cnext; /* pointer to next member of cycle */ member
|
/titanic_44/usr/src/cmd/awk/ |
H A D | tran.c | 209 next = cp->cnext; in freesymtab() 230 for (p = tp->tab[h]; p != NULL; prev = p, p = p->cnext) in freeelem() 233 tp->tab[h] = p->cnext; in freeelem() 235 prev->cnext = p->cnext; in freeelem() 270 p->cnext = tp->tab[h]; in setsymtab() 299 op = cp->cnext; in rehash() 301 cp->cnext = np[nh]; in rehash() 317 for (p = tp->tab[h]; p != NULL; p = p->cnext) { in lookup()
|
H A D | run.c | 662 a->cnext = tmps; in tfree() 677 tmps[i-1].cnext = &tmps[i]; in gettemp() 678 tmps[i-1].cnext = 0; in gettemp() 681 tmps = x->cnext; in gettemp() 1466 ncp = cp->cnext; in instat()
|
H A D | awk.h | 106 struct Cell *cnext; /* ptr to next if chained */ member
|
H A D | lib.c | 359 newfld[i].cnext = NULL; in morefld()
|
/titanic_44/usr/src/lib/libumem/common/ |
H A D | umem_fork.c | 167 umem_cache_t *cnext, *cprev; in umem_do_release() local 173 cp->cache_unext = cnext = &umem_null_cache; in umem_do_release() 176 cnext->cache_uprev = cp; in umem_do_release()
|
H A D | umem.c | 943 umem_cache_t *cnext, *cprev; in umem_add_update_unlocked() local 959 cp->cache_unext = cnext = &umem_null_cache; in umem_add_update_unlocked() 961 cnext->cache_uprev = cp; in umem_add_update_unlocked() 2653 umem_cache_t *cp, *cnext, *cprev; in umem_cache_create() local 2931 cp->cache_next = cnext = &umem_null_cache; in umem_cache_create() 2933 cnext->cache_prev = cp; in umem_cache_create()
|
/titanic_44/usr/src/uts/common/os/ |
H A D | callout.c | 81 #define CALLOUT_HASH_INSERT(hash, cp, cnext, cprev) \ argument 86 cp->cnext = hashp->ch_head; \ 90 cp->cnext->cprev = cp; \ 94 #define CALLOUT_HASH_APPEND(hash, cp, cnext, cprev) \ argument 98 cp->cnext = NULL; \ 103 cp->cprev->cnext = cp; \ 107 #define CALLOUT_HASH_DELETE(hash, cp, cnext, cprev) \ argument 111 if (cp->cnext == NULL) \ 114 cp->cnext->cprev = cp->cprev; \ 116 hashp->ch_head = cp->cnext; \ [all …]
|
/titanic_44/usr/src/uts/common/contract/ |
H A D | process.c | 679 contract_t *cnext; in contract_process_status() local 704 for (loc = 0, cnext = list_head(&ctp->conp_inherited); cnext; in contract_process_status() 705 cnext = list_next(&ctp->conp_inherited, cnext)) in contract_process_status() 706 ctids[loc++] = cnext->ct_id; in contract_process_status()
|
/titanic_44/usr/src/uts/common/sys/ |
H A D | bofi_impl.h | 37 struct bofi_errent *cnext; /* next on clone chain */ member
|
/titanic_44/usr/src/uts/common/io/ |
H A D | bofi.c | 870 softc->cnext = softc; in bofi_open() 892 for (ep = softc->cnext; ep != softc; ) { in bofi_close() 893 next_ep = ep->cnext; in bofi_close() 1769 ep->cnext = softc->cnext; in bofi_errdef_alloc() 1770 softc->cnext->cprev = ep; in bofi_errdef_alloc() 1772 softc->cnext = ep; in bofi_errdef_alloc() 1855 hep->cnext->cprev = hep->cprev; in bofi_errdef_free() 1856 hep->cprev->cnext = hep->cnext; in bofi_errdef_free()
|
/titanic_44/usr/src/uts/common/io/scsi/adapters/pmcs/ |
H A D | pmcs_subr.c | 3398 pmcs_phy_t *ctmp, *clist = NULL, *cnext; in pmcs_configure_expander() local 3511 cnext = ctmp->sibling; in pmcs_configure_expander() 3515 ctmp = cnext; in pmcs_configure_expander()
|