Home
last modified time | relevance | path

Searched refs:nxt (Results 1 – 25 of 61) sorted by relevance

123

/titanic_41/usr/src/uts/common/sys/ib/clients/of/sol_ofs/
H A Dsol_ofs_common.h134 struct llist_head *nxt; member
143 list->prv = list->nxt = list; in llist_head_init()
148 llist_head_t *nxt) in __llist_add() argument
150 nxt->prv = new; in __llist_add()
151 new->nxt = nxt; in __llist_add()
153 prv->nxt = new; in __llist_add()
157 __llist_add(new, head, head->nxt); in llist_add()
167 entry->nxt->prv = entry->prv; in llist_del()
168 entry->prv->nxt = entry->nxt; in llist_del()
173 return (list->nxt == head); in llist_is_last()
[all …]
/titanic_41/usr/src/lib/libast/common/string/
H A Dfmtbuf.c34 static char* nxt = buf; variable
47 if (n > (&buf[elementsof(buf)] - nxt)) in fmtbuf()
63 nxt = buf; in fmtbuf()
65 cur = nxt; in fmtbuf()
66 nxt += n; in fmtbuf()
H A Dtok.c41 struct Tok_s* nxt; /* next in free list */ member
60 freelist = freelist->ptr.nxt; in tokopen()
80 p->ptr.nxt = freelist; in tokclose()
H A Dtokscan.c172 tokscan(register char* s, char** nxt, const char* fmt, ...) in tokscan() argument
358 if (nxt) *nxt = skip ? skip : s; in tokscan()
/titanic_41/usr/src/cmd/sendmail/db/log/
H A Dlog_archive.c190 int array_size, last, n, nxt, ret; local
261 for (last = nxt = 0; nxt < n;) {
267 if (last != nxt) {
268 array[last] = array[nxt];
269 array[nxt] = NULL;
271 for (++nxt; nxt < n &&
272 strcmp(array[last], array[nxt]) == 0; ++nxt) {
273 __os_freestr(array[nxt]);
274 array[nxt] = NULL;
324 for (; nxt < n; ++nxt)
[all …]
/titanic_41/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_split.c627 indx_t full, half, nxt, off, skip, top, used; local
642 for (nxt = off = 0, top = NEXTINDEX(h); nxt < top; ++off) {
649 src = bi = GETBINTERNAL(h, nxt);
654 src = bl = GETBLEAF(h, nxt);
659 src = GETRINTERNAL(h, nxt);
664 src = rl = GETRLEAF(h, nxt);
679 || nxt == top - 1) {
686 ++nxt;
718 if (c->pg.index < nxt) /* Left page. */
722 c->pg.index -= nxt;
[all …]
/titanic_41/usr/src/uts/common/io/ib/clients/of/sol_uverbs/
H A Dsol_uverbs_event.c182 entry = ufile->event_list.nxt; in sol_uverbs_event_file_read()
201 llist_del(ufile->event_list.nxt); in sol_uverbs_event_file_read()
392 entry = ufile->event_list.nxt; in uverbs_release_event_file()
393 list_tmp = entry->nxt; in uverbs_release_event_file()
405 list_tmp = entry->nxt; in uverbs_release_event_file()
913 ucq->comp_list.nxt); in uverbs_release_ucq_channel()
916 entry = ucq->comp_list.nxt; in uverbs_release_ucq_channel()
917 list_tmp = entry->nxt; in uverbs_release_ucq_channel()
929 list_tmp = entry->nxt; in uverbs_release_ucq_channel()
965 entry = ucq->async_list.nxt; in uverbs_release_ucq_uevents()
[all …]
H A Dsol_uverbs_hca.c143 centry = hca->client_data_list.nxt; in sol_uverbs_ib_unregister_client()
144 tmp = centry->nxt; in sol_uverbs_ib_unregister_client()
156 tmp = centry->nxt; in sol_uverbs_ib_unregister_client()
/titanic_41/usr/src/cmd/fs.d/
H A Dfsck.c99 struct devlist *nxt; member
357 dp->nxt = devs; in main()
542 dp->nxt = devs; in main()
604 bdp->nxt = bl; in fsck_dopreen()
657 for (pbdp = NULL, bdp = *blp; bdp != NULL; pbdp = bdp, bdp = bdp->nxt) { in waiter()
667 pbdp->nxt = bdp->nxt; in waiter()
669 *blp = bdp->nxt; in waiter()
681 badlist = &(*badlist)->nxt; in waiter()
683 bdp->nxt = NULL; in waiter()
694 for (x = 3; lp != NULL; lp = lp->nxt) { in print_badlist()
[all …]
/titanic_41/usr/src/cmd/fs.d/nfs/statd/
H A Dsm_proc.c476 new->nxt = new->prev = NULL; in insert_mon()
527 monitor_q = monitor_q->nxt; in insert_mon()
533 new->nxt = found->nxt; in insert_mon()
535 if (found->nxt != NULL) in insert_mon()
536 found->nxt->prev = new; in insert_mon()
537 found->nxt = new; in insert_mon()
542 new->nxt = mon_table[hash].sm_monhdp; in insert_mon()
544 if (new->nxt != (mon_entry *) NULL) in insert_mon()
545 new->nxt->prev = new; in insert_mon()
592 next = next->nxt; in delete_onemon()
[all …]
H A Dsm_statd.c673 next = next->nxt; in sm_try()
754 new->nxt = *namepp; in insert_name()
755 if (new->nxt != NULL) in insert_name()
756 new->nxt->prev = new; in insert_name()
782 nl->prev->nxt = nl->nxt; in delete_name()
784 *namepp = nl->nxt; in delete_name()
785 if (nl->nxt != NULL) in delete_name()
786 nl->nxt->prev = nl->prev; in delete_name()
791 nl = nl->nxt; in delete_name()
809 nl = nl->nxt; in find_name()
[all …]
H A Dsm_statd.h82 struct mon_entry *nxt; /* Next ptr to next entry in hash */ member
91 struct name_entry *nxt; /* Next ptr to next entry in hash */ member
/titanic_41/usr/src/uts/common/io/ib/clients/eoib/
H A Deib_svc.c44 eib_event_t *nxt; in eib_events_handler() local
70 nxt = evi->ev_next; in eib_events_handler()
72 evi = nxt; in eib_events_handler()
384 eib_vnic_req_t *nxt; in eib_vnic_creator() local
425 for (elem = ss->ei_vnic_req; elem; elem = nxt) { in eib_vnic_creator()
426 nxt = elem->vr_next; in eib_vnic_creator()
429 for (elem = ss->ei_failed_vnic_req; elem; elem = nxt) { in eib_vnic_creator()
430 nxt = elem->vr_next; in eib_vnic_creator()
730 eib_ka_vnics_t *nxt; in eib_manage_keepalives() local
762 for (elem = ss->ei_ka_vnics; elem; elem = nxt) { in eib_manage_keepalives()
[all …]
/titanic_41/usr/src/lib/libcmd/common/
H A Dcat.c131 unsigned char* nxt; in vcat() local
191 if (!(nxt = (unsigned char*)(*reserve)(ip, SF_UNBOUND, 0))) in vcat()
205 cp = buf = nxt; in vcat()
275 if (!(nxt = (unsigned char*)(*reserve)(ip, SF_UNBOUND, 0))) in vcat()
289 buf = nxt; in vcat()
351 if (!(nxt = (unsigned char*)(*reserve)(ip, SF_UNBOUND, 0))) in vcat()
367 buf = nxt; in vcat()
/titanic_41/usr/src/cmd/grpck/
H A Dgrpck.c73 struct group *nxt; member
149 t->groups->nxt = NULL; in main()
331 t->groups->nxt = NULL; in main()
344 for (gp = t->groups; gp != NULL; gp = gp->nxt) { in main()
348 if (gp->nxt == NULL) in main()
360 gp->nxt = t->groups; in main()
/titanic_41/usr/src/cmd/sh/
H A Dhash.c93 struct node *p, *nxt; variable
101 nxt = p->next;
103 p = nxt;
/titanic_41/usr/src/cmd/ypcmd/revnetgroup/
H A Dgetgroup.c53 struct list *nxt; member
126 for (ls = list; ls != NULL; ls = ls->nxt) {
138 ls->nxt = list;
/titanic_41/usr/src/uts/common/io/scsi/adapters/scsi_vhci/fops/
H A Dsym.c167 symmetric_pathclass_next(char *cur, char **nxt, void *ctpriv) in symmetric_pathclass_next() argument
170 *nxt = PCLASS_PRIMARY; in symmetric_pathclass_next()
H A Dtape.c207 tape_pathclass_next(char *cur, char **nxt, void *ctpriv) in tape_pathclass_next() argument
210 *nxt = PCLASS_PRIMARY; in tape_pathclass_next()
/titanic_41/usr/src/cmd/sendmail/db/btree/
H A Dbt_split.c930 __bam_copy(dbp, pp, cp, nxt, stop) in __bam_copy() argument
933 u_int32_t nxt, stop;
941 for (off = 0; nxt < stop; ++nxt, ++NUM_ENT(cp), ++off) {
944 if (B_TYPE(GET_BINTERNAL(pp, nxt)->type) == B_KEYDATA)
946 BINTERNAL_SIZE(GET_BINTERNAL(pp, nxt)->len);
955 if (off != 0 && (nxt % P_INDX) == 0 &&
956 pp->inp[nxt] == pp->inp[nxt - P_INDX]) {
962 if (B_TYPE(GET_BKEYDATA(pp, nxt)->type) == B_KEYDATA)
964 BKEYDATA_SIZE(GET_BKEYDATA(pp, nxt)->len);
975 memcpy(P_ENTRY(cp, off), P_ENTRY(pp, nxt), nbytes);
/titanic_41/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
H A Dpdu.c646 pdu_varlist_t *vp, *nxt; in snmp_free_pdu() local
652 for (vp = pdu->vars; vp; vp = nxt) { in snmp_free_pdu()
653 nxt = vp->nextvar; in snmp_free_pdu()
675 pdu_varlist_t *vp, *nxt; in snmp_free_null_vars() local
677 for (vp = varblock_p; vp; vp = nxt) { in snmp_free_null_vars()
678 nxt = vp->nextvar; in snmp_free_null_vars()
/titanic_41/usr/src/uts/common/sys/
H A Dstrft.h113 struct ftblk *nxt; /* next ftblk (or NULL if none) */ member
158 _hp->first.nxt = NULL; \
/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dgetgraent.c52 struct list *nxt; member
266 for (ls = g->minuslist; ls != NULL; ls = ls->nxt) { in freeminuslist()
298 for (ls = g->minuslist; ls != NULL; ls = ls->nxt) in onminuslist()
393 ls->nxt = g->minuslist; in addtominuslist()
/titanic_41/usr/src/cmd/fs.d/ufs/quotacheck/
H A Dquotacheck.c265 struct active *nxt; member
355 ap->nxt = alist; in preen()
403 for (lap = NULL, ap = *alp; ap != NULL; lap = ap, ap = ap->nxt) { in waiter()
412 lap->nxt = ap->nxt; in waiter()
414 *alp = ap->nxt; in waiter()
/titanic_41/usr/src/lib/libast/common/port/
H A Dastlicense.c90 #define PUT(b,c) (((b)->nxt<(b)->end)?(*(b)->nxt++=(c)):((c),(-1)))
92 #define USE(b) ((b)->siz=(b)->nxt-(b)->buf,(b)->nxt=(b)->buf,(b)->siz)
93 #define SIZ(b) ((b)->nxt-(b)->buf)
94 #define END(b) (*((b)->nxt>=(b)->end?((b)->nxt=(b)->end-1):(b)->nxt)=0,(b)->nxt-(b)->buf)
103 char* nxt; member
401 buf.end = (buf.buf = buf.nxt = p) + size; in astlicense()
402 tmp.end = (tmp.buf = tmp.nxt = tmpbuf) + sizeof(tmpbuf); in astlicense()

123