Home
last modified time | relevance | path

Searched refs:next (Results 101 – 125 of 2483) sorted by relevance

12345678910>>...100

/illumos-gate/usr/src/lib/libdwarf/common/
H A Ddwarf_tsearchhash.c147 struct ts_entry *next; member
301 for(n = p->next; n ; n = n->next) { in dumptree_inner()
345 e->next = 0; in allocate_ts_entry()
408 for(n = p->next; n ; n = n->next) { in resize_table()
478 s->next = 0; in tsearch_inner()
490 for(c = s->next; c; c = c->next) { in tsearch_inner()
509 q->next = s->next; in tsearch_inner()
510 s->next = q; in tsearch_inner()
590 parentp->next = found->next; in dwarf_tdelete()
637 for(n = p->next; n ; n = n->next) { in dwarf_twalk_inner()
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlfunc.c61 pp = &p->next; in luaF_findupval()
67 uv->u.l.next = g->uvhead.u.l.next; in luaF_findupval()
68 uv->u.l.next->u.l.prev = uv; in luaF_findupval()
69 g->uvhead.u.l.next = uv; in luaF_findupval()
70 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv); in luaF_findupval()
76 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv); in unlinkupval()
77 uv->u.l.next->u.l.prev = uv->u.l.prev; /* remove from `uvhead' list */ in unlinkupval()
78 uv->u.l.prev->u.l.next = uv->u.l.next; in unlinkupval()
95 L->openupval = uv->next; /* remove from `open' list */ in luaF_close()
102 gch(o)->next = g->allgc; /* link upvalue into 'allgc' list */ in luaF_close()
/illumos-gate/usr/src/contrib/zlib/
H A Dinfback.c88 static code *next; in fixedtables() local
96 next = fixed; in fixedtables()
97 lenfix = next; in fixedtables()
104 distfix = next; in fixedtables()
127 next = strm->next_in; \
138 strm->next_in = next; \
156 have = in(in_desc, &next); \
158 next = Z_NULL; \
273 next = strm->next_in; in inflateBack()
340 next += copy; in inflateBack()
[all …]
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasCloseAdapter.c57 } else if (global_hba_head->open_handles->next == NULL) { in Sun_sasCloseAdapter()
70 global_hba_head->open_handles = open_handle_ptr->next; in Sun_sasCloseAdapter()
73 for (open_handle_ptr = open_handle_ptr->next, in Sun_sasCloseAdapter()
77 open_handle_ptr = open_handle_ptr->next) { in Sun_sasCloseAdapter()
79 open_handle_prev_ptr->next = in Sun_sasCloseAdapter()
80 open_handle_ptr->next; in Sun_sasCloseAdapter()
86 open_handle_prev_ptr->next; in Sun_sasCloseAdapter()
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelSessionUtil.c154 new_sp->next = NULL; in kernel_add_session()
205 if (session_p->next) { in kernel_delete_session()
207 session_p->next->prev = NULL; in kernel_delete_session()
214 if (session_p->next) { in kernel_delete_session()
216 session_p->prev->next = session_p->next; in kernel_delete_session()
220 session_p->prev->next = NULL; in kernel_delete_session()
377 objp1 = objp->next; in kernel_delete_session()
445 sp->next = NULL; in kernel_session_delay_free()
501 objp = objp->next; in kernel_acquire_all_slots_mutexes()
504 session_p = session_p->next; in kernel_acquire_all_slots_mutexes()
[all …]
/illumos-gate/usr/src/cmd/mandoc/
H A Dtbl_term.c262 dp = dp->next; in term_tbl()
285 cpn = cpn->next; in term_tbl()
297 dp = dp->next; in term_tbl()
311 if (sp->next != NULL && sp->next->pos == TBL_SPAN_DATA && in term_tbl()
414 cp = cp->next; in term_tbl()
420 dp = dp->next; in term_tbl()
464 cp = cp->next; in term_tbl()
561 (sp->next == NULL || sp->next->pos == TBL_SPAN_DATA || in term_tbl()
562 sp->next->next != NULL)) in term_tbl()
643 cpp = cpp->next; in tbl_hrule()
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dsmatch_project.c86 token = token->next; in register_no_return_funcs()
92 token = token->next; in register_no_return_funcs()
113 token = token->next; in register_ignored_macros()
119 token = token->next; in register_ignored_macros()
142 token = token->next; in register_skipped_functions()
148 token = token->next; in register_skipped_functions()
171 token = token->next; in register_silenced_functions()
177 token = token->next; in register_silenced_functions()
200 token = token->next; in register_no_inline_functions()
206 token = token->next; in register_no_inline_functions()
/illumos-gate/usr/src/uts/common/os/
H A Dproc.c54 pctx->next = p->p_pctx; in installpctx()
75 for (pctx = p->p_pctx; pctx != NULL; pctx = pctx->next) { in removepctx()
81 prev_pctx->next = pctx->next; in removepctx()
83 p->p_pctx = pctx->next; in removepctx()
102 for (pctx = p->p_pctx; pctx != 0; pctx = pctx->next) in savepctx()
113 for (pctx = p->p_pctx; pctx != 0; pctx = pctx->next) in restorepctx()
123 for (pctx = p->p_pctx; pctx != NULL; pctx = pctx->next) in forkpctx()
140 for (pctx = p->p_pctx; pctx != NULL; pctx = pctx->next) in exitpctx()
155 p->p_pctx = pctx->next; in freepctx()
/illumos-gate/usr/src/lib/libtecla/common/
H A Dfreelist.c40 FreeListBlock *next; /* The next block in the list */ member
140 for(block=fl->block; block; block=block->next) in _rst_FreeList()
146 for(block=fl->block; block; block=block->next) { in _rst_FreeList()
196 FreeListBlock *next = fl->block; in _del_FreeList() local
197 while(next) { in _del_FreeList()
198 FreeListBlock *block = next; in _del_FreeList()
199 next = block->next; in _del_FreeList()
243 block->next = fl->block; in _new_FreeListNode()
347 block->next = NULL; in _new_FreeListBlock()
393 fl->next = NULL; in _del_FreeListBlock()
/illumos-gate/usr/src/lib/libadm/common/
H A Dgetdgrp.c67 struct dgrplist *next; member
244 dgrplistfirst.next = NULL; in initdgrplist()
277 p = q->next; in addtodgrplist()
280 p = p->next; in addtodgrplist()
295 newnode->next = p; in addtodgrplist()
296 q->next = newnode; in addtodgrplist()
349 for (pmbr = dgrp->membership; notfound && pmbr; pmbr = pmbr->next) { in isindevlist()
458 for (pdgrpent = dgrplistfirst.next; pdgrpent; in buildreturnlist()
459 pdgrpent = pdgrpent->next) { in buildreturnlist()
488 for (pdgrpent = dgrplistfirst.next; pdgrpent; pdgrpent = nextnode) { in freedgrplist()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/
H A Deloop.c108 timeout->next = NULL; in eloop_register_timeout()
121 tmp = tmp->next; in eloop_register_timeout()
125 timeout->next = eloop.timeout; in eloop_register_timeout()
128 timeout->next = prev->next; in eloop_register_timeout()
129 prev->next = timeout; in eloop_register_timeout()
149 next = timeout->next; in eloop_cancel_timeout()
157 eloop.timeout = next; in eloop_cancel_timeout()
159 prev->next = next; in eloop_cancel_timeout()
164 timeout = next; in eloop_cancel_timeout()
271 eloop.timeout = eloop.timeout->next; in eloop_run()
[all …]
/illumos-gate/usr/src/cmd/lp/filter/postscript/download/
H A Ddownload.c303 for ( ptr = stringspace; ; next++ ) { in readmap()
304 if ( (next % 50) == 0 ) in readmap()
305 map = allocate(map, next+50); in readmap()
306 map[next].downloaded = FALSE; in readmap()
309 if ( map[next].font == NULL ) in readmap()
311 if ( map[next].file == NULL ) in readmap()
349 else if ( (n = lookup(buf)) < next ) in readresident()
428 if ( next > 0 ) { in download()
483 if ( (n = lookup(font)) < next ) { in copyfonts()
539 for ( i = 0; i < next; i++ ) in lookup()
[all …]
/illumos-gate/usr/src/uts/sun4/io/efcode/
H A Dfc_subr.c159 fp->next = NULL; in fcode_interpreter()
174 for (qp = fc_request_head; qp->next != NULL; qp = qp->next) in fcode_interpreter()
176 qp->next = fp; in fcode_interpreter()
210 for (qp = fc_request_head; qp->next != fp; qp = qp->next) in fcode_interpreter()
212 qp->next = fp->next; in fcode_interpreter()
332 ip->next = NULL; in fc_add_resource()
359 for (fp = rp->head; fp && (fp->next != ip); fp = fp->next) in fc_rem_resource()
368 fp->next = ip->next; in fc_rem_resource()
462 np = ip->next; in fc_phandle_table_free()
514 np->next = *head; in fc_dip_to_phandle()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/port/
H A Dmnt.c164 struct statfs* next;
283 n = getmntinfo(&mp->next, 0);
290 mp->last = mp->next + n;
302 if (mp->next < mp->last)
304 flags = mp->next->f_flags;
309 …set(&mp->hdr, mp->next->f_mntfromname, mp->next->f_mntonname, TYPE(mp->next), n ? (mp->opt + 1) : …
310 mp->next++;
348 struct vmount* next;
367 mp->next = mp->info;
392 switch (mp->next->vmt_gfstype)
[all …]
/illumos-gate/usr/src/cmd/geniconvtbl/
H A Dassemble.c175 ref->referencer, ref->next)); in assemble()
289 name; name = name->next) { in relocation_I()
444 ref; place += ref->size, ref = ref->next) { in relocation_II()
452 ref; place += ref->size, ref = ref->next) { in relocation_II()
460 ref; place += ref->size, ref = ref->next) { in relocation_II()
468 ref; place += ref->size, ref = ref->next) { in relocation_II()
778 ref = ref->next) { in analysis2()
1102 ref; ref = ref->next) { in output()
1125 name; name = name->next) { in output()
1152 name; name = name->next) { in output()
[all …]
/illumos-gate/usr/src/lib/libsecdb/common/
H A Dgetexecattr.c94 prev->next = getexecattr(); in getexecprof()
95 prev = prev->next; in getexecprof()
154 prev->next = new; in getexecuser()
217 free_execattr(exec->next); in free_execattr()
250 r->prev->next = exec; in findexecattr()
294 if (exec->next == NULL) { in get_tail()
327 if (es->next) { in execstr2attr()
328 newexec->next = execstr2attr((execstr_t *)(es->next)); in execstr2attr()
330 newexec->next = NULL; in execstr2attr()
352 if (exec->next) { in print_execattr()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/vmalloc/
H A Dvmpool.c50 reg Block_t *tp, *next; local
91 { SIZE(next) = POOLFREE;
92 SEGLINK(next) = vd->free;
93 vd->free = next;
94 next = (Block_t*)((Vmuchar_t*)next + size);
99 { SIZE(next) = s - sizeof(Head_t);
100 SEG(next) = seg;
101 seg->free = next;
253 Seg_t *seg, *next; local
258 for(seg = vd->seg; seg; seg = next)
[all …]
/illumos-gate/usr/src/uts/common/io/
H A Dvuid_queue.c80 vqn->next = vp->next; in vq_put()
84 vp->next->prev = vqn; in vq_put()
86 vp->next = vqn; in vq_put()
111 vq->top = vqn->next; in vq_get()
141 vqn->next = vq->top; in vq_putback()
185 victim_next = victim->next; in vq_compress()
252 vqn->prev->next = vqn->next; in vq_delete_node()
258 vqn->next->prev = vqn->prev; in vq_delete_node()
275 vq->free = vq->free->next; in vq_alloc_node()
277 vqn->next = VUID_Q_NODE_NULL; in vq_alloc_node()
[all …]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_acache.c78 ap = hp->next; in nfs4_access_check()
98 ap = ap->next; in nfs4_access_check()
136 ap = hp->next; in nfs4_access_cache()
149 ap = ap->next; in nfs4_access_cache()
157 nap->next = hp->next; in nfs4_access_cache()
158 hp->next = nap; in nfs4_access_cache()
159 nap->next->prev = nap; in nfs4_access_cache()
196 ap->prev->next = ap->next; in nfs4_access_purge_rp()
197 ap->next->prev = ap->prev; in nfs4_access_purge_rp()
229 acache4[i].next = (acache4_t *)&acache4[i]; in nfs4_acache_init()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfgetr.c61 { if((f->flags&SF_STRING) && (un = f->endb - f->next))
62 { us = f->next;
63 f->next = f->endb;
75 if((n = (ends = f->endb) - (s = f->next)) <= 0)
111 us = f->next;
112 un = s - f->next;
113 f->next = s;
119 n = s - f->next;
141 ends = f->next;
142 f->next += n;
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dlog.c38 mblk_t next; in msgbuf() local
94 if (mdb_vread(&next, sizeof (next), addr) == -1) { in msgbuf()
99 if (mdb_vread(&lctl, sizeof (lctl), (uintptr_t)next.b_rptr) == -1) { in msgbuf()
100 mdb_warn("failed to read log_ctl_t at %p", next.b_rptr); in msgbuf()
104 if (mdb_vread(&cont, sizeof (cont), (uintptr_t)next.b_cont) == -1) { in msgbuf()
105 mdb_warn("failed to read msgb structure at %p", next.b_cont); in msgbuf()
139 mdb_printf("%?p ", next.b_rptr); in msgbuf()
/illumos-gate/usr/src/lib/passwdutil/
H A Dswitch_utils.c175 lkp2 = lkp->next; in get_ns()
194 lkp2 = lkp->next; in get_ns()
195 lkp3 = lkp2->next; in get_ns()
296 char *p, *next; in str2passwd() local
309 next = buffer; in str2passwd()
358 if (next == p) { in str2passwd()
374 if (*next++ != ':') { in str2passwd()
376 p = gettok(&next); in str2passwd()
389 if (next == p) { in str2passwd()
402 p = gettok(&next); in str2passwd()
[all …]
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_targets.c282 for (p = p->next; p; p = p->next) { in slp_next_failover()
327 st->next = NULL; in slp_fabricate_target()
347 dap = das->next; in slp_destroy_target_list()
356 stp = sts->next; in slp_destroy_target_list()
398 st->next = NULL; in add2scopes_list()
404 stp->next = st; in add2scopes_list()
429 te->next = NULL; in add_da_entry()
440 p = p->next; in add_da_entry()
447 te->next = p; in add_da_entry()
460 p = p->next; in add_da_entry()
[all …]
/illumos-gate/usr/src/cmd/eeprom/i386/
H A Dbenv.c182 for (e = list->next; e != list; e = e->next) { in get_var()
213 for (e = list->next; e != list; e = e->next) { in print_vars()
367 *next = p; in add_comm()
402 *next = c; in parse_cmd()
418 *next = c; in parse_cmd()
484 *next = c; in parse_name()
521 *next = c; in parse_value()
567 *next = c; in parse_value()
572 *next = c; in parse_value()
584 while (*next <= last && **next != COMM) { in add_cmd()
[all …]
/illumos-gate/usr/src/lib/libresolv2/common/sunw/
H A Dsunw_updrec.c56 new->r_glink.next = in old2new()
58 new->r_link.next = 0; in old2new()
103 __ISC_ns_updrec *next; in delete_list() local
105 for (; list != 0; list = next) { in delete_list()
106 next = list->r_link.next; in delete_list()
128 r->r_link.next = 0; in copy_list()
132 r->r_glink.next = 0; in copy_list()
135 r->r_glink.next = (void *)-1; in copy_list()
138 p->r_link.next = r; in copy_list()
140 p->r_glink.next = r; in copy_list()

12345678910>>...100