Searched refs:next (Results 201 - 225 of 3067) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dlibieee.h29 struct ct *next; member in struct:ct
35 struct ieee_symbol *next; member in struct:ieee_symbol
43 struct ieee_reloc *next; member in struct:ieee_reloc
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dlibieee.h29 struct ct *next; member in struct:ct
35 struct ieee_symbol *next; member in struct:ieee_symbol
43 struct ieee_reloc *next; member in struct:ieee_reloc
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dlab.c82 for (l = ffelab_list_; (l != NULL) && (ffelab_value (l) != v); l = l->next)
103 for (pl = NULL, l = ffelab_list_; l != NULL; pl = l, l = l->next)
146 l->next = ffelab_list_;
H A Dbld.c697 c->next != NULL;
698 c = c->next)
701 c->next,
702 sizeof (*(c->next)));
704 ffebld_constant_character1 (c->next));
706 ffebld_constant_character1 (c->next));
708 return c->next;
716 nc->next = c->next;
722 c->next
[all...]
H A Dwhere.c58 ffewhereLL_ next; local
136 ll->next = (ffewhereLL_) &ffewhere_root_ll_->first;
138 ll->next->previous = ll;
139 ll->previous->next = ll;
142 if (ll->previous == ll->next)
154 if (ll->previous == ll->next)
226 wl->previous->next = wl->next;
227 wl->next->previous = wl->previous;
262 wl->next
[all...]
H A Dmalloc.c106 a->next->previous = a->previous;
107 a->previous->next = a->next;
166 for (q = p->eldest; q != (mallocPool) & p->eldest; q = q->next)
171 for (a = p->first; a != (mallocArea_) & p->first; a = a->next)
199 assert (p->next->previous == p);
200 assert (p->previous->next == p);
219 p->next->previous = p->previous;
220 p->previous->next = p->next;
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000815-1.c35 register struct table_elt *p, *next; local
40 for (p = table[i]; p; p = next)
42 next = p->next_same_hash;
/openbsd-current/sbin/fsck_ext2fs/
H A Dpass1b.c83 for (dlp = duphead; dlp; dlp = dlp->next) {
88 duphead = duphead->next;
93 if (muldup == 0 || duphead == muldup->next)
/openbsd-current/sbin/fsck_msdos/
H A Ddosfs.h84 cl_t next; /* pointer to next cluster */ member in struct:fatEntry
117 *next, /* next brother */ member in struct:dosDirEntry
135 struct dirTodoNode *next; member in struct:dirTodoNode
/openbsd-current/gnu/llvm/libcxx/include/__algorithm/
H A Dranges_reverse.h15 #include <__iterator/next.h>
41 auto __end = ranges::next(__first, __last);
50 auto __end = ranges::next(__first, __last);
/openbsd-current/gnu/llvm/libcxxabi/src/
H A Dcxa_thread_atexit.cpp66 DtorList* next; member in struct:__cxxabiv1::__anon268::DtorList
78 dtors = head->next;
136 head->next = dtors;
/openbsd-current/sys/dev/ic/
H A Dsiopvar.h65 TAILQ_ENTRY (siop_cmd) next; member in struct:siop_cmd
75 TAILQ_ENTRY (siop_cbd) next; member in struct:siop_cbd
107 TAILQ_ENTRY (siop_lunsw) next; member in struct:siop_lunsw
/openbsd-current/lib/libedit/
H A Dkeymacro.c75 struct keymacro_node_t *next; /* ptr to next char of this key */ member in struct:keymacro_node_t
282 if (ptr->next) {
283 /* key not complete so get next char */
286 return node_trav(el, ptr->next, ch, val);
296 /* try next sibling */
299 /* no next sibling -- mismatch */
327 if (ptr->next != NULL) {
328 node__put(el, ptr->next);
330 ptr->next
[all...]
/openbsd-current/usr.sbin/dvmrpd/
H A Dkroute.c301 char *buf, *next, *lim; local
329 for (next = buf; next < lim; next += ifm.ifm_msglen) {
330 memcpy(&ifm, next, sizeof(ifm));
331 sa = (struct sockaddr *)(next + sizeof(ifm));
376 char *next, *lim; local
390 for (next = buf; next < lim; next
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgenoutput.c123 struct operand_data *next;
143 static struct operand_data **odata_end = &null_operand.next;
157 struct data *next;
201 for (i = idata; i ; i = i->next)
247 struct predicate { const char *name; struct predicate *next; };
254 struct predicate *p, *next;
256 for (d = odata; d; d = d->next)
259 for (p = predicates; p; p = p->next)
269 p->next = predicates;
275 for (p = predicates; p; p = next)
122 struct operand_data *next; member in struct:operand_data
156 struct data *next; member in struct:data
244 struct predicate { const char *name; struct predicate *next; }; member in struct:predicate
251 struct predicate *p, *next; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp1989.C11 link *next; member in struct:link
14 link(const T& t): item(t), prev(0), next(0)
16 link(const T& t, link<T> *p, link<T> *n): item(t), prev(p), next(n)
51 void next(Pix& x) const function in class:List_DL
52 { if (0 != x) x = ((link<T> *) x)->next; }
70 for (Pix x=other.first(); 0 != x; other.next(x))
89 tail->next = new link<T>(item, tail, 0);
90 tail = tail->next;
105 tail = tail->next;
120 l->prev->next
292 void next(Pix& x) const function in class:Set_DL
324 void next(Pix& x) const function in class:Set_DLp
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dthread.c77 for (tp = thread_list; tp; tp = tp->next)
112 tpnext = tp->next;
131 tp->next = thread_list;
143 for (tp = thread_list; tp; tpprev = tp, tp = tp->next)
151 tpprev->next = tp->next;
153 thread_list = tp->next;
163 for (tp = thread_list; tp; tp = tp->next)
176 for (tp = thread_list; tp; tp = tp->next)
203 for (tp = thread_list; tp; tp = tp->next)
387 struct thread_info *tp, *next; local
[all...]
/openbsd-current/usr.sbin/config/
H A Dutil.c113 newnv(const char *name, const char *str, void *ptr, int i, struct nvlist *next) argument
121 nv->nv_next = next;
151 struct nvlist *next; local
153 for (; nv != NULL; nv = next) {
154 next = nv->nv_next;
/openbsd-current/usr.sbin/crunchgen/
H A Dcrunchide.c125 struct keep *next; member in struct:keep
135 for (curp = keep_list, prevp = NULL; curp; prevp = curp, curp = curp->next)
149 newp->next = curp;
151 prevp->next = newp;
162 for (curp = keep_list; curp; curp = curp->next)
/openbsd-current/usr.bin/tmux/
H A Dcmd-select-window.c46 .name = "next-window",
47 .alias = "next",
93 int next, previous, last, activity; local
95 next = (cmd_get_entry(self) == &cmd_next_window_entry);
97 next = 1;
105 if (next || previous || last) {
107 if (next) {
109 cmdq_error(item, "no next window");
H A Dcmd-select-layout.c46 .name = "next-layout",
81 int next, previous, layout; local
85 next = (cmd_get_entry(self) == &cmd_next_layout_entry);
87 next = 1;
95 if (next || previous) {
96 if (next)
/openbsd-current/bin/csh/
H A Dhist.c52 if (sp->next->word[0] == '\n')
85 np->Hlex.next = lp->next;
86 lp->next->prev = &np->Hlex;
88 lp->prev->next = &np->Hlex;
/openbsd-current/gnu/llvm/lld/MachO/
H A DSymbols.cpp73 auto next = std::next(it); local
74 if (next == rend)
76 if ((*it)->value < (*next)->value)
77 std::swap(*next, *it);
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dcg_print.c171 todo = cyc->cg.cyc.next;
172 cyc->cg.cyc.next = 0;
174 for (doing = todo; doing && doing->cg.cyc.next; doing = todo)
176 todo = doing->cg.cyc.next;
178 for (prev = cyc; prev->cg.cyc.next; prev = prev->cg.cyc.next)
180 if (cmp_member (doing, prev->cg.cyc.next) == GREATERTHAN)
184 doing->cg.cyc.next = prev->cg.cyc.next;
185 prev->cg.cyc.next
1076 Sym *next = child; local
1099 Sym *next = parent; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dcg_print.c167 todo = cyc->cg.cyc.next;
168 cyc->cg.cyc.next = 0;
170 for (doing = todo; doing && doing->cg.cyc.next; doing = todo)
172 todo = doing->cg.cyc.next;
174 for (prev = cyc; prev->cg.cyc.next; prev = prev->cg.cyc.next)
176 if (cmp_member (doing, prev->cg.cyc.next) == GREATERTHAN)
180 doing->cg.cyc.next = prev->cg.cyc.next;
181 prev->cg.cyc.next
1057 Sym *next = child; local
1080 Sym *next = parent; local
[all...]

Completed in 539 milliseconds

1234567891011>>