Searched refs:next (Results 1 - 25 of 2578) sorted by relevance

1234567891011>>

/freebsd-13-stable/lib/libc/stdlib/
H A Dremque.c19 struct que_elem *prev, *next, *elem; local
24 next = elem->next;
27 prev->next = next;
28 if (next != NULL)
29 next->prev = prev;
H A Dinsque.c23 struct que_elem *prev, *next, *elem; local
29 elem->prev = elem->next = NULL;
33 next = prev->next;
34 if (next != NULL) {
36 if (next->prev != prev) {
38 " next(%p)->prev(%p) != prev(%p)\n",
39 next, next->prev, prev);
42 next
[all...]
/freebsd-13-stable/contrib/ipfilter/lib/
H A Dalist_free.c14 alist_t *a, *next; local
16 for (a = hosts; a != NULL; a = next) {
17 next = a->al_next;
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dsuff-main.exp1 : Making next-main
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_c9x_recursive_init.c3 void *next; member in union:node
14 .n = { .next = 0, },
/freebsd-13-stable/usr.bin/find/
H A Doperator.c65 (*planp) = (*planp)->next;
66 node->next = NULL;
79 PLAN *next; /* temp node holding subexpression results */ local
96 if ((next = yankexpr(planp)) == NULL)
105 if (next->execute == f_closeparen) {
113 tail = subplan = next;
115 tail->next = next;
116 tail = next;
118 tail->next
168 PLAN *next; /* next node being processed */ local
231 PLAN *next; /* next node being processed */ local
[all...]
/freebsd-13-stable/lib/libc/stdio/
H A Dglue.h43 struct glue *next; member in struct:glue
/freebsd-13-stable/crypto/openssl/ssl/
H A Dpqueue.c29 item->next = NULL;
55 pitem *curr, *next; local
62 for (curr = NULL, next = pq->items;
63 next != NULL; curr = next, next = next->next) {
67 int cmp = memcmp(next->priority, item->priority, 8);
68 if (cmp > 0) { /* next > ite
106 pitem *next; local
[all...]
/freebsd-13-stable/sys/netpfil/ipfw/test/
H A Dmylist.h11 struct list_head *prev, *next; member in struct:list_head
14 #define INIT_LIST_HEAD(l) do { (l)->prev = (l)->next = (l); } while (0)
15 #define list_empty(l) ( (l)->next == l )
18 struct list_head *next)
20 next->prev = o;
21 o->next = next;
23 prev->next = o;
33 (ty *)((char *)((pL)->next) - offsetof(ty, member))
36 __list_del(struct list_head *prev, struct list_head *next) argument
17 __list_add(struct list_head *o, struct list_head *prev, struct list_head *next) argument
[all...]
/freebsd-13-stable/sys/contrib/ck/include/
H A Dck_hp_fifo.h49 struct ck_hp_fifo_entry *next; member in struct:ck_hp_fifo_entry
64 stub->next = NULL;
83 struct ck_hp_fifo_entry *tail, *next; local
86 entry->next = NULL;
95 next = ck_pr_load_ptr(&tail->next);
96 if (next != NULL) {
97 ck_pr_cas_ptr(&fifo->tail, tail, next);
99 } else if (ck_pr_cas_ptr(&fifo->tail->next, next, entr
114 struct ck_hp_fifo_entry *tail, *next; local
142 struct ck_hp_fifo_entry *head, *tail, *next; local
176 struct ck_hp_fifo_entry *head, *tail, *next; local
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_base/util/
H A Dfs_skels.c64 && skel->children->next->is_atom)
68 && skel->children->next->is_atom)
82 && skel->children->next->is_atom)
107 if (skel->children->next->is_atom
108 && skel->children->next->next->is_atom
109 && (! skel->children->next->next->next->is_atom)
110 && (! skel->children->next
[all...]
/freebsd-13-stable/sys/dev/hpt27xx/
H A Dlist.h43 struct list_head *next, *prev; member in struct:list_head
46 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
48 static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next) argument
50 next->prev = _new;
51 _new->next = next;
53 prev->next = _new;
58 __list_add(_new, head, head->next);
66 static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next) argument
68 next
[all...]
/freebsd-13-stable/sys/dev/hptnr/
H A Dlist.h42 struct list_head *next, *prev; member in struct:list_head
45 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
47 static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next) argument
49 next->prev = _new;
50 _new->next = next;
52 prev->next = _new;
57 __list_add(_new, head, head->next);
65 static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next) argument
67 next
[all...]
/freebsd-13-stable/sys/dev/hptrr/
H A Dlist.h45 struct list_head *next, *prev; member in struct:list_head
48 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
50 static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next) argument
52 next->prev = _new;
53 _new->next = next;
55 prev->next = _new;
60 __list_add(_new, head, head->next);
68 static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next) argument
70 next
[all...]
/freebsd-13-stable/sys/dev/drm2/
H A Ddrm_linux_list.h15 * The above copyright notice and this permission notice (including the next
39 struct list_head *next, *prev; member in struct:list_head
46 (head)->next = head;
57 return (head)->next == head;
62 (head)->next->prev = new;
63 (new)->next = (head)->next;
65 (head)->next = new;
71 (entry)->next = head;
72 (head)->prev->next
156 __list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
188 struct hlist_node *next, **pprev; member in struct:hlist_node
245 hlist_add_before(struct hlist_node *n, struct hlist_node *next) argument
255 hlist_add_after(struct hlist_node *n, struct hlist_node *next) argument
[all...]
/freebsd-13-stable/contrib/expat/xmlwf/
H A Dct.c115 const char *next, *p; local
118 next = buf;
119 p = getTok(&next);
120 if (matchkey(p, next, "text"))
122 else if (! matchkey(p, next, "application"))
124 p = getTok(&next);
127 p = getTok(&next);
128 if (matchkey(p, next, "xml"))
130 p = getTok(&next);
133 p = getTok(&next);
[all...]
H A Dxmlmime.c119 const char *next, *p; local
122 next = buf;
123 p = getTok(&next);
124 if (matchkey(p, next, "text"))
126 else if (! matchkey(p, next, "application"))
128 p = getTok(&next);
131 p = getTok(&next);
134 if (! matchkey(p, next, "xml") && charset[0] == '\0')
138 p = getTok(&next);
141 p = getTok(&next);
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_private.h20 lzma_next_coder next; member in struct:__anon6639
34 lzma_next_coder *next, const lzma_allocator *allocator,
/freebsd-13-stable/libexec/mknetid/
H A Dhash.h40 struct grouplist *next; member in struct:grouplist
47 struct member_entry *next; member in struct:member_entry
/freebsd-13-stable/contrib/xz/src/liblzma/common/
H A Dblock_decoder.h19 extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
H A Dfilter_decoder.h20 lzma_next_coder *next, const lzma_allocator *allocator,
H A Dindex_encoder.h19 extern lzma_ret lzma_index_encoder_init(lzma_next_coder *next,
/freebsd-13-stable/contrib/tcpdump/
H A Dcpack.c52 /* Advance to the next wordsize boundary. Return NULL if fewer than
59 const uint8_t *next; local
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
65 if (next - cs->c_buf + wordsize > cs->c_len)
68 return next;
98 const uint8_t *next; local
100 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
103 *u = EXTRACT_LE_64BITS(next);
106 cs->c_next = next + sizeof(*u);
114 const uint8_t *next; local
130 const uint8_t *next; local
[all...]
/freebsd-13-stable/bin/sh/
H A Dalias.h39 struct alias *next; member in struct:alias
/freebsd-13-stable/contrib/xz/src/liblzma/simple/
H A Dsimple_coder.h19 extern lzma_ret lzma_simple_x86_encoder_init(lzma_next_coder *next,
23 extern lzma_ret lzma_simple_x86_decoder_init(lzma_next_coder *next,
28 extern lzma_ret lzma_simple_powerpc_encoder_init(lzma_next_coder *next,
32 extern lzma_ret lzma_simple_powerpc_decoder_init(lzma_next_coder *next,
37 extern lzma_ret lzma_simple_ia64_encoder_init(lzma_next_coder *next,
41 extern lzma_ret lzma_simple_ia64_decoder_init(lzma_next_coder *next,
46 extern lzma_ret lzma_simple_arm_encoder_init(lzma_next_coder *next,
50 extern lzma_ret lzma_simple_arm_decoder_init(lzma_next_coder *next,
55 extern lzma_ret lzma_simple_armthumb_encoder_init(lzma_next_coder *next,
59 extern lzma_ret lzma_simple_armthumb_decoder_init(lzma_next_coder *next,
[all...]

Completed in 141 milliseconds

1234567891011>>