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

1234567891011>>

/freebsd-10.0-release/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-10.0-release/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-10.0-release/usr.bin/find/
H A Doperator.c64 (*planp) = (*planp)->next;
65 node->next = NULL;
78 PLAN *next; /* temp node holding subexpression results */ local
95 if ((next = yankexpr(planp)) == NULL)
104 if (next->execute == f_closeparen) {
112 tail = subplan = next;
114 tail->next = next;
115 tail = next;
117 tail->next
167 PLAN *next; /* next node being processed */ local
230 PLAN *next; /* next node being processed */ local
[all...]
/freebsd-10.0-release/lib/libc/stdio/
H A Dglue.h41 struct glue *next; member in struct:glue
/freebsd-10.0-release/sys/netpfil/ipfw/test/
H A Dmylist.h10 struct list_head *prev, *next; member in struct:list_head
13 #define INIT_LIST_HEAD(l) do { (l)->prev = (l)->next = (l); } while (0)
14 #define list_empty(l) ( (l)->next == l )
17 struct list_head *next)
19 next->prev = o;
20 o->next = next;
22 prev->next = o;
32 (ty *)((char *)((pL)->next) - offsetof(ty, member))
35 __list_del(struct list_head *prev, struct list_head *next) argument
16 __list_add(struct list_head *o, struct list_head *prev, struct list_head *next) argument
[all...]
/freebsd-10.0-release/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-10.0-release/sys/dev/hpt27xx/
H A Dlist.h41 struct list_head *next, *prev; member in struct:list_head
44 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
46 static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next) argument
48 next->prev = _new;
49 _new->next = next;
51 prev->next = _new;
56 __list_add(_new, head, head->next);
64 static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next) argument
66 next
[all...]
/freebsd-10.0-release/sys/dev/hptnr/
H A Dlist.h40 struct list_head *next, *prev; member in struct:list_head
43 #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
45 static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next) argument
47 next->prev = _new;
48 _new->next = next;
50 prev->next = _new;
55 __list_add(_new, head, head->next);
63 static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next) argument
65 next
[all...]
/freebsd-10.0-release/sys/dev/hptrr/
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-10.0-release/sys/dev/nxge/include/
H A Dxge-list.h39 * @next: Next list item.
45 struct xge_list_t* next; member in struct:xge_list_t
57 header->next = header;
73 return header->next == header;
80 * Returns the next item from the header.
81 * Returns NULL if the next item is header itself
87 xge_assert(header->next != NULL);
90 if(header->next == header)
93 return header->next;
106 xge_assert(item->next !
[all...]
/freebsd-10.0-release/sys/dev/vxge/include/
H A Dvxge-list.h41 * @next: Next list item.
47 struct vxge_list_t *next; member in struct:vxge_list_t
61 header->next = header;
77 return (header->next == header);
84 * Returns the next item from the header.
85 * Returns NULL if the next item is header itself
91 vxge_assert(header->next != NULL);
94 if (header->next == header)
97 return (header->next);
110 vxge_assert(item->next !
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/pqueue/
H A Dpqueue.c79 item->next = NULL;
113 pitem *curr, *next; local
121 for(curr = NULL, next = pq->items;
122 next != NULL;
123 curr = next, next = next->next)
127 int cmp = memcmp(next->priority, item->priority,8);
128 if (cmp > 0) /* next > ite
170 pitem *next; local
[all...]
/freebsd-10.0-release/sys/kern/
H A Dsubr_module.c49 int next; local
64 /* skip to next field */
65 next = sizeof(uint32_t) * 2 + hdr[1];
66 next = roundup(next, sizeof(u_long));
67 curp += next;
81 int next; local
101 /* skip to next field */
102 next = sizeof(uint32_t) * 2 + hdr[1];
103 next
118 int next; local
161 int next; local
204 int next; local
263 int next; local
[all...]
/freebsd-10.0-release/contrib/expat/xmlwf/
H A Dct.c86 const char *next, *p; local
89 next = buf;
90 p = getTok(&next);
91 if (matchkey(p, next, "text"))
93 else if (!matchkey(p, next, "application"))
95 p = getTok(&next);
98 p = getTok(&next);
99 if (matchkey(p, next, "xml"))
101 p = getTok(&next);
104 p = getTok(&next);
[all...]
H A Dxmlmime.c90 const char *next, *p; local
93 next = buf;
94 p = getTok(&next);
95 if (matchkey(p, next, "text"))
97 else if (!matchkey(p, next, "application"))
99 p = getTok(&next);
102 p = getTok(&next);
104 if (!matchkey(p, next, "xml") && charset[0] == '\0')
107 p = getTok(&next);
110 p = getTok(&next);
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/delta/
H A Ddelta_common.c20 lzma_next_end(&coder->next, allocator);
27 lzma_delta_coder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
31 if (next->coder == NULL) {
32 next->coder = lzma_alloc(sizeof(lzma_coder), allocator);
33 if (next->coder == NULL)
37 next->end = &delta_coder_end;
38 next->coder->next = LZMA_NEXT_CODER_INIT;
47 next->coder->distance = opt->dist;
50 next
[all...]
H A Ddelta_private.h20 lzma_next_coder next; member in struct:lzma_coder_s
34 lzma_next_coder *next, lzma_allocator *allocator,
/freebsd-10.0-release/sys/dev/drm/
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
47 (head)->next = head;
53 return (head)->next == head;
58 (head)->next->prev = new;
59 (new)->next = (head)->next;
61 (head)->next = new;
67 (entry)->next = head;
68 (head)->prev->next
[all...]
/freebsd-10.0-release/libexec/mknetid/
H A Dhash.h38 struct grouplist *next; member in struct:grouplist
45 struct member_entry *next; member in struct:member_entry
/freebsd-10.0-release/sys/ofed/include/linux/
H A Dlist.h67 struct list_head *next; member in struct:list_head
75 list->next = list->prev = list;
82 return (head->next == head);
89 entry->next->prev = entry->prev;
90 entry->prev->next = entry->next;
95 struct list_head *next)
98 next->prev = new;
99 new->next = next;
94 _list_add(struct list_head *new, struct list_head *prev, struct list_head *next) argument
169 _list_splice(const struct list_head *list, struct list_head *prev, struct list_head *next) argument
224 struct hlist_node *next, **pprev; member in struct:hlist_node
281 hlist_add_before(struct hlist_node *n, struct hlist_node *next) argument
291 hlist_add_after(struct hlist_node *n, struct hlist_node *next) argument
[all...]
/freebsd-10.0-release/bin/sh/
H A Dalias.h39 struct alias *next; member in struct:alias
/freebsd-10.0-release/contrib/tcpdump/
H A Dcpack.c52 /* Advance to the next wordsize boundary. Return NULL if fewer than
59 u_int8_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;
87 u_int8_t *next; local
89 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
92 *u = EXTRACT_LE_64BITS(next);
95 cs->c_next = next + sizeof(*u);
103 u_int8_t *next; local
119 u_int8_t *next; local
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/common/
H A Dalone_decoder.h19 extern lzma_ret lzma_alone_decoder_init(lzma_next_coder *next,
H A Dblock_decoder.h19 extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,

Completed in 192 milliseconds

1234567891011>>