Searched refs:next (Results 26 - 50 of 2472) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libast/common/vmalloc/
H A Dvmclose.c41 Seg_t *seg, *vmseg, *next; local
64 for(last = Vmheap, v = last->next; v; last = v, v = v->next)
66 { last->next = v->next;
73 for(seg = vd->seg; seg; seg = next)
74 { next = seg->next;
/illumos-gate/usr/src/boot/sys/boot/fdt/dts/arm/
H A Dmeson8b.dtsi44 next-level-cache = <&L2>;
51 next-level-cache = <&L2>;
58 next-level-cache = <&L2>;
65 next-level-cache = <&L2>;
/illumos-gate/usr/src/cmd/krb5/krb5kdc/
H A Dreplay.c40 struct _krb5_kdc_replay_ent *next; member in struct:_krb5_kdc_replay_ent
86 if (root_ptr.next) {
87 for (last = &root_ptr, eptr = root_ptr.next;
89 eptr = eptr->next) {
107 last->next = eptr->next;
153 eptr->next = root_ptr.next;
154 root_ptr.next = eptr;
164 if (root_ptr.next) {
[all...]
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dprintlist.c59 slp->next = listp->next;
61 listp->next = slp;
69 for (slp = listp->next; slp; slp = slp->next) {
/illumos-gate/usr/src/tools/cscope-fast/
H A Dhistory.c52 tail->next = h;
53 h->next = 0;
58 h->next = h->previous = 0;
81 /* return next history item */
87 if (current->next) /* stay on first item */
88 return (current = current->next);
/illumos-gate/usr/src/lib/libresolv2/include/isc/
H A Dlist.h26 #define LINK(type) struct { type *prev, *next; }
30 (elt)->link.next = (type *)(-1); \
35 (void *)((elt)->link.next) != (void *)(-1))
49 (elt)->link.next = (list).head; \
57 (list).tail->link.next = (elt); \
61 (elt)->link.next = NULL; \
68 if ((elt)->link.next != NULL) \
69 (elt)->link.next->link.prev = (elt)->link.prev; \
75 (elt)->link.prev->link.next = (elt)->link.next; \
[all...]
/illumos-gate/usr/src/cmd/powertop/common/
H A Dsuggestions.c48 * to the next.
96 new->next = NULL;
98 for (n = sugg; n != NULL; n = n->next) {
125 for (n = sugg; n->next != NULL; n = n->next)
128 n->next = new;
130 new->next = NULL;
136 new->next = sugg;
145 new->next = pos;
147 pos->prev->next
[all...]
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfwrite.c38 reg uchar *s, *begs, *next; local
55 if((uchar*)buf != f->next &&
82 f->next += n;
95 w = f->endb - f->next;
97 if(s == f->next) /* after sfreserve */
100 f->next = (s += w);
109 if((w = f->endb - f->next) < (ssize_t)n)
111 { if(f->next > f->data)
118 else if(f->next > f->data)
121 if((w = f->endb - f->next) < (ssize_
[all...]
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dflt.c40 FLT * next; member in struct:fault
87 f->next = Fault_List->next;
88 Fault_List->next = f;
104 for (f = Fault_List; f->next; f = f->next)
105 if (f->next->type == type && f->next->ident == md)
107 fp = f->next;
108 f->next
[all...]
H A Drstatus.c51 for (prs = Request_List; prs; prs = prs->next) {
55 r->prev->next = r;
56 r->next = prs;
63 if (prs->next)
67 prs->next = r;
80 Request_List = r->next;
82 if (r->next)
83 r->next->prev = r->prev;
86 r->prev->next = r->next;
[all...]
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasCloseAdapter.c57 } else if (global_hba_head->open_handles->next == NULL) {
70 global_hba_head->open_handles = open_handle_ptr->next;
73 for (open_handle_ptr = open_handle_ptr->next,
77 open_handle_ptr = open_handle_ptr->next) {
79 open_handle_prev_ptr->next =
80 open_handle_ptr->next;
86 open_handle_prev_ptr->next;
/illumos-gate/usr/src/cmd/sh/
H A Dhash.c53 struct node *next; member in struct:node
57 static struct node *next; variable in typeref:struct:node
101 nxt = p->next;
124 next = 0;
133 q = &(p->next);
134 p = p->next;
142 next = p;
156 p->next = next;
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dsetenviron.c47 static char** next; /* next free slot */ local
63 environ = next = p;
64 *++next = 0;
104 next = p;
107 else if (next == last)
113 next = last - INCREMENT;
131 next--;
143 p = next;
144 *++next
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Ddnssrv.c41 struct srv_dns_entry *next; local
43 next = p->next;
46 p = next;
154 srv->next = head;
160 * The next person has a higher priority (lower priorities
163 * There is no next entry (we're at the end)
165 for (entry = head; entry != NULL; entry = entry->next) {
166 if ((entry->next &&
167 entry->next
[all...]
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dtmem.c63 void *buf, *next; local
80 next = *(void **)buf;
82 buf = next;
/illumos-gate/usr/src/lib/libast/common/cdt/
H A Ddtwalk.c39 reg Void_t *obj, *next; local
46 next = dtnext(dt,obj);
49 obj = next;
/illumos-gate/usr/src/lib/libast/common/stdio/
H A Dvsnprintf.c44 f.data = f.next = f.endr = (uchar*)s;
52 *f.next = 0;
53 _Sfi = f.next - f.data;
/illumos-gate/usr/src/lib/libmapmalloc/common/
H A Dtextmem.c66 struct block *next; member in struct:block
72 struct page *next; member in struct:page
120 for (page = memstart; page; page = page->next) {
121 for (block = page->block; block; block = block->next) {
140 page->next = memstart;
144 block->next = 0;
174 * Join block with next one if it is free
176 if (block->next && block->next->status == FREE) {
177 block->size += block->next
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dev_waits.c62 new->next = NULL;
64 wl->last->next = new;
93 ctx->waitDone.last->next = first;
118 prev = this, this = this->next)
122 prev->next = this->next;
124 wl->first = this->next;
137 prev = this, this = this->next)
141 prev->next = this->next;
[all...]
/illumos-gate/usr/src/lib/libeti/panel/common/
H A Dbottom.c65 obs -> next = panel -> obscured -> next;
66 panel->obscured = panel->obscured->next = obs;
69 obs -> next = panel -> obscured = obs;
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwdelch.c61 int next, width, y, x; local
66 next = __m_cc_next(w, y, x);
73 (void) memcpy(&w->_line[y][x], &w->_line[y][next],
74 (w->_maxx - next) * sizeof (**w->_line));
/illumos-gate/usr/src/lib/libnsctl/common/
H A Dnsc_hash.h34 struct hash_node_s *next; member in struct:hash_node_s
/illumos-gate/usr/src/common/mpi/
H A Dmpprime.c92 mp_digit next = 0; local
99 next = (next << CHAR_BIT) | (RANDOM() & UCHAR_MAX);
101 DIGIT(a, ix) = next;
/illumos-gate/usr/src/cmd/dfs.cmds/sharemgr/
H A Dshareutil.c72 newopt->next = NULL;
76 for (tmp = optlist; tmp->next != NULL;
77 tmp = tmp->next) {
89 tmp->next = newopt;
/illumos-gate/usr/src/cmd/mail/
H A Dnew_recipl.c47 plist->recip_list.next = 0;

Completed in 126 milliseconds

1234567891011>>