Searched refs:next (Results 51 - 75 of 2472) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/ndmpd/include/
H A Dcstack.h58 struct cstack *next; member in struct:cstack
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig_impl.h42 struct config *next; member in struct:config
/illumos-gate/usr/src/cmd/sgs/librtld_db/demo/common/
H A Ddisasm.c37 unsigned int next, unsigned int prev, int vers)
36 disassemble(unsigned int instr, unsigned long pc, FUNCPTR prtAddress, unsigned int next, unsigned int prev, int vers) argument
/illumos-gate/usr/src/uts/i86pc/cpu/generic_cpu/
H A Dgcpu_poll_subr.c50 uint_t next; local
57 next = (ptc->mptc_curtrace + 1) % gcpu_poll_trace_nent;
58 pt = &ptc->mptc_tbufs[next];
66 ptc->mptc_curtrace = next;
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregstat.c37 e = e->next;
39 e = e->next;
41 e = e->next;
42 if (!e || e->type == REX_END && !e->next)
/illumos-gate/usr/src/cmd/make/bin/
H A Ddepvar.cc44 struct _Depvar *next; /* Linked list */ member in struct:_Depvar
65 dv->next = NULL;
68 bpatch = &dv->next;
85 for (dv = depvar_list; dv != NULL; dv = dv->next) {
/illumos-gate/usr/src/common/ficl/emu/
H A Dloader_emu.h42 STAILQ_ENTRY(bootblk_command) next; member in struct:bootblk_command
/illumos-gate/usr/src/lib/libnsctl/common/
H A Dhash.c61 node->next = hash[ index ];
88 node = node->next;
108 hash[ index ] = hash[ index ]->next;
114 node = prev->next;
117 node = node->next;
122 prev->next = node->next;
135 hash_node_t *p, *next; local
140 next = p->next;
[all...]
/illumos-gate/usr/src/uts/common/io/ib/clients/of/sol_ofs/
H A Dsol_ofs_gen_util.c61 new_entry->next = NULL;
68 list->tail->next = new_entry;
84 entry->prev->next = entry->next;
86 list->head = entry->next;
89 if (entry->next) {
90 entry->next->prev = entry->prev;
96 entry->prev = entry->next = NULL;
109 list->head = list->head->next;
148 entry->next
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dscsi_reset_notify.c56 p = p->next;
61 *listp = p->next;
63 beforep->next = p->next;
74 p->next = *listp;
88 struct scsi_reset_notify_entry *p, *next; local
92 next = p->next;
94 p = next;
120 p = p->next;
[all...]
/illumos-gate/usr/src/lib/libast/common/hash/
H A Dhashfree.c73 b = b->next;
111 for (; tp; tp = tp->next)
112 if (tp->next == tab)
114 tp->next = tab->next;
118 else if (!(tab->root->references = tp->next))
122 for (; rp; rp = rp->next)
123 if (rp->next == tab->root)
125 rp->next = tab->root->next;
[all...]
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dlsearch.c51 register POINTER next = base + *nelp * width; /* End of table */ local
53 for ( ; base < next; base += width)
57 return (memcpy(base, key, (int)width)); /* base now == next */
H A Don_exit.c35 struct handlers *next; member in struct:handlers
52 h->next = _exit_handlers;
/illumos-gate/usr/src/cmd/sgs/include/
H A Dlist.h47 Listnode *next; /* the next element */ member in struct:listnode
62 Elf32_Addr next; /* the next element */ member in struct:listnode32
/illumos-gate/usr/src/psm/stand/bootlst/common/
H A Dsasubr.c45 static caddr_t next; local
48 if (next == NULL)
49 next = (caddr_t)roundup((uintptr_t)&_end, MINALLOC);
50 ret = next;
51 next += roundup(s, MINALLOC);
52 if (next >= TOPMEM)
/illumos-gate/usr/src/lib/libast/common/comp/
H A Datexit.c55 struct list* next;
70 p->next = funclist;
82 funclist = p->next;
/illumos-gate/usr/src/lib/libeti/panel/common/
H A Dmisc.c119 _Free_list = _Free_list -> next;
145 obs = obs -> next;
158 prev_obs -> next = obs -> next;
177 panel -> obscured = obs -> next = obs;
181 curr_obs = prev_obs -> next;
186 curr_obs = curr_obs -> next;
194 obs -> next = curr_obs;
195 prev_obs -> next = obs;
234 obs -> next
[all...]
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_log_entry_c.x59 struct db_log_entry *next; /* Used in constructing list */
73 % db_log_entry *next; /* Used in constructing list */
78 % db_log_entry() { query = NULL, object = NULL; next = NULL; }
105 % db_log_entry * getnextptr() { return( next ); }
108 % void setnextptr( db_log_entry *p ) { next = p; }
H A Ddb_index_entry_c.c67 * (char **)&ep->next,
81 more_data = (ep->next != NULL);
85 ep->next = NULL;
89 loc = ep->next;
95 ep->next = loc = (db_index_entry *)
109 ep->next = NULL;
159 * (char **)&ep->next,
173 more_data = (ep->next != NULL);
177 ep->next = NULL;
181 loc = ep->next;
[all...]
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dmalloc.c55 struct block *next; member in struct:block
61 struct page *next; member in struct:page
111 for (block = page->block; block; block = block->next) {
116 for (block2 = block->next; block2 &&
117 block2->status == FREE; block2 = block2->next) {
118 block->next = block2->next;
142 newblock->next = block->next;
143 block->next
[all...]
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfmove.c43 reg uchar *cp, *next; local
91 if(fw->next >= fw->endb ||
92 (fw->next > fw->data && fr->extent < 0 &&
116 if((r = fr->endb - (next = fr->next)) <= 0)
134 if(fw && fw->extent >= 0 && w <= (fw->endb-fw->next) )
135 { w = fw->endb - (next = fw->next);
146 { next = rbuf;
162 next
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/common/
H A Dvolume_dlist.c70 for (iter = list; iter != NULL; iter = iter->next) {
113 for (iter = list; iter != NULL; iter = iter->next) {
122 item->next = iter;
126 item->prev->next = item;
128 item->next = iter;
133 if (iter->next == NULL) {
135 iter->next = item;
147 * clear it's next and prev pointers, return new list head.
207 * the item to remove, with prev and next pointers
219 if (item->next !
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dldaputf8.c50 register unsigned char* next = (unsigned char*)s; local
51 switch (UTF8len [(*next >> 2) & 0x3F]) {
53 case 6: if ((*++next & 0xC0) != 0x80) break;
54 case 5: if ((*++next & 0xC0) != 0x80) break;
55 case 4: if ((*++next & 0xC0) != 0x80) break;
56 case 3: if ((*++next & 0xC0) != 0x80) break;
57 case 2: if ((*++next & 0xC0) != 0x80) break;
58 case 1: ++next;
60 return (char*) next;
138 ldap_utf8strtok_r( char* sp, const char* brk, char** next) argument
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.talkd/
H A Dtable.c66 TABLE_ENTRY *next; member in struct:table_entry
106 ptr = ptr->next;
120 ptr = ptr->next;
162 ptr = ptr->next;
180 ptr = ptr->next;
209 ptr->next = table;
210 if (ptr->next != NULL) {
211 ptr->next->last = ptr;
252 ptr = ptr->next;
275 table = ptr->next;
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_callb.c68 mdb_callb_t *next = mdb_list_next(cb); local
72 if (next == NULL || next->cb_mod != mod)
75 mod->mod_cb = next;
103 mdb_callb_t *cb, *next; local
110 for (cb = mdb_list_next(&mdb.m_cblist); cb != NULL; cb = next) {
111 next = mdb_list_next(cb);

Completed in 143 milliseconds

1234567891011>>