Home
last modified time | relevance | path

Searched refs:next (Results 26 – 50 of 2950) sorted by relevance

12345678910>>...118

/freebsd/contrib/expat/xmlwf/
H A Dxmlmime.c121 const char *next, *p; in getXMLCharset() local
124 next = buf; in getXMLCharset()
125 p = getTok(&next); in getXMLCharset()
130 p = getTok(&next); in getXMLCharset()
133 p = getTok(&next); in getXMLCharset()
140 p = getTok(&next); in getXMLCharset()
143 p = getTok(&next); in getXMLCharset()
145 p = getTok(&next); in getXMLCharset()
147 p = getTok(&next); in getXMLCharset()
164 while (p != next) in getXMLCharset()
[all …]
/freebsd/contrib/wpa/src/utils/
H A Dlist.h16 struct dl_list *next; member
24 list->next = list; in dl_list_init()
30 item->next = list->next; in dl_list_add()
32 list->next->prev = item; in dl_list_add()
33 list->next = item; in dl_list_add()
43 item->next->prev = item->prev; in dl_list_del()
44 item->prev->next = item->next; in dl_list_del()
45 item->next = NULL; in dl_list_del()
51 return list->next == list; in dl_list_empty()
58 for (item = list->next; item != list; item = item->next) in dl_list_len()
[all …]
/freebsd/contrib/libxo/tests/core/saved/
H A Dtest_08.J.out1next":1}, {"name":1,"next":2}, {"name":2,"next":3}],"last":3}, {"name":"rope","count":85, "sub": […
H A Dtest_08.JP.out91 "next": 1
95 "next": 2
99 "next": 3
110 "next": 1
114 "next": 2
118 "next": 3
129 "next": 1
133 "next": 2
137 "next": 3
148 "next": 1
[all …]
H A Dtest_08.JPu.out91 "next": 1
95 "next": 2
99 "next": 3
110 "next": 1
114 "next": 2
118 "next": 3
129 "next": 1
133 "next": 2
137 "next": 3
148 "next": 1
[all …]
/freebsd/usr.bin/m4/
H A Dtokenizer.l85 char *next; in parse_radix() local
91 if (base > 36 || next == NULL) { in parse_radix()
94 next++; in parse_radix()
95 while (*next != 0) { in parse_radix()
96 if (*next >= '0' && *next <= '9') in parse_radix()
97 d = *next - '0'; in parse_radix()
98 else if (*next >= 'a' && *next <= 'z') in parse_radix()
99 d = *next - 'a' + 10; in parse_radix()
101 assert(*next >= 'A' && *next <= 'Z'); in parse_radix()
102 d = *next - 'A' + 10; in parse_radix()
[all …]
/freebsd/contrib/xz/src/liblzma/common/
H A Dauto_decoder.c22 lzma_next_coder next; member
60 &coder->next, allocator, in auto_decode()
65 &coder->next, allocator, in auto_decode()
87 coder->next.coder, allocator, in auto_decode()
132 : coder->next.get_check(coder->next.coder); in auto_decoder_get_check()
144 if (coder->next.memconfig != NULL) { in auto_decoder_memconfig()
145 ret = coder->next.memconfig(coder->next.coder, in auto_decoder_memconfig()
181 next->coder = coder; in auto_decoder_init()
182 next->code = &auto_decode; in auto_decoder_init()
183 next->end = &auto_decoder_end; in auto_decoder_init()
[all …]
H A Dcommon.c122 next->id = filters[0].id; in lzma_next_filter_init()
141 assert(next->update != NULL); in lzma_next_filter_update()
142 return next->update(next->coder, allocator, NULL, reversed_filters); in lzma_next_filter_update()
153 if (next->end != NULL) in lzma_next_end()
154 next->end(next->coder, allocator); in lzma_next_end()
160 *next = LZMA_NEXT_CODER_INIT; in lzma_next_end()
406 strm->internal->next.get_progress(strm->internal->next.coder, in lzma_get_progress()
425 return strm->internal->next.get_check(strm->internal->next.coder); in lzma_get_check()
438 strm->internal->next.coder, in lzma_memusage()
455 strm->internal->next.coder, in lzma_memlimit_get()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_rlock.c340 next = prev; in zfs_rangelock_add_reader()
344 if (next == NULL || off + len <= next->lr_offset) { in zfs_rangelock_add_reader()
362 for (prev = NULL; next; prev = next, next = AVL_NEXT(tree, next)) { in zfs_rangelock_add_reader()
375 if (off + len == next->lr_offset + next->lr_length) { in zfs_rangelock_add_reader()
377 next = zfs_rangelock_proxify(tree, next); in zfs_rangelock_add_reader()
381 if (off + len < next->lr_offset + next->lr_length) { in zfs_rangelock_add_reader()
383 next = zfs_rangelock_split(tree, next, off + len); in zfs_rangelock_add_reader()
387 ASSERT3U(off + len, >, next->lr_offset + next->lr_length); in zfs_rangelock_add_reader()
388 next = zfs_rangelock_proxify(tree, next); in zfs_rangelock_add_reader()
446 for (; next != NULL; next = AVL_NEXT(tree, next)) { in zfs_rangelock_enter_reader()
[all …]
/freebsd/lib/libc/stdlib/
H A Dinsque.c20 struct que_elem *prev, *next, *elem; in insque() local
26 elem->prev = elem->next = NULL; in insque()
30 next = prev->next; in insque()
31 if (next != NULL) { in insque()
33 if (next->prev != prev) { in insque()
36 next, next->prev, prev); in insque()
39 next->prev = elem; in insque()
41 prev->next = elem; in insque()
43 elem->next = next; in insque()
/freebsd/sys/contrib/vchiq/interface/compat/
H A Dlist.h70 head->next = head; in INIT_LIST_HEAD()
76 return head->next; in list_first()
88 return node->next; in list_next()
118 prev->next = node; in __list_add_between()
120 node->next = next; in __list_add_between()
121 next->prev = node; in __list_add_between()
139 entry->prev->next = entry->next; in list_del()
151 prev->next = first; in __list_splice_between()
153 last->next = next; in __list_splice_between()
154 next->prev = last; in __list_splice_between()
[all …]
/freebsd/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,
64 extern lzma_ret lzma_simple_arm64_encoder_init(lzma_next_coder *next,
68 extern lzma_ret lzma_simple_arm64_decoder_init(lzma_next_coder *next,
[all …]
/freebsd/sbin/rcorder/
H A Drcorder.c119 f_reqnode *next; member
277 temp->next = fn_head->next; in filenode_new()
373 pnode->next = head->next; in add_provide()
568 pnode->next = head->next; in make_fake_provision()
718 for (pnode = head->next; pnode; pnode = pnode->next) { in generate_loop_for_req()
921 r = r->next; in do_file()
958 pnode->last->next = pnode->next; in do_file()
961 p = p->next; in do_file()
980 fnode->last->next = fnode->next; in do_file()
1039 if (head->next->next == NULL && in generate_graphviz_providers()
[all …]
/freebsd/contrib/byacc/
H A Dmkpar.c139 for (next = actions; next && next->symbol < symbol; next = next->next) in add_reduce()
140 prev = next; in add_reduce()
142 while (next && next->symbol == symbol && next->action_code == SHIFT) in add_reduce()
144 prev = next; in add_reduce()
145 next = next->next; in add_reduce()
148 while (next && next->symbol == symbol && in add_reduce()
149 next->action_code == REDUCE && next->number < ruleno) in add_reduce()
151 prev = next; in add_reduce()
152 next = next->next; in add_reduce()
156 temp->next = next; in add_reduce()
[all …]
/freebsd/lib/libc/include/isc/
H A Dlist.h38 (elt)->link.next = (type *)(-1); \
57 (elt)->link.next = (list).head; \
65 (list).tail->link.next = (elt); \
69 (elt)->link.next = NULL; \
76 if ((elt)->link.next != NULL) \
83 (elt)->link.prev->link.next = (elt)->link.next; \
86 (list).head = (elt)->link.next; \
105 (elt)->link.next = (before); \
112 if ((after)->link.next == NULL) \
115 (elt)->link.next = (after)->link.next; \
[all …]
/freebsd/sys/dev/ocs_fc/
H A Docs_list.h105 list->next = list; in _ocs_list_init()
124 return list->next == list; in ocs_list_empty()
157 ocs_list_assert(a->next); in _ocs_list_insert_link()
161 ocs_list_assert(b->next); in _ocs_list_insert_link()
171 c->next = a->next; in _ocs_list_insert_link()
173 a->next = c; in _ocs_list_insert_link()
200 link->next = NULL; in ocs_list_init_link()
367 ocs_list_t *next; in ocs_list_remove() local
383 next = link->next; in ocs_list_remove()
385 prev->next = next; in ocs_list_remove()
[all …]
/freebsd/crypto/openssl/crypto/async/
H A Dasync_wait.c23 struct fd_lookup_st *next; in ASYNC_WAIT_CTX_free() local
36 next = curr->next; in ASYNC_WAIT_CTX_free()
38 curr = next; in ASYNC_WAIT_CTX_free()
60 fdlookup->next = ctx->fds; in ASYNC_WAIT_CTX_set_wait_fd()
83 curr = curr->next; in ASYNC_WAIT_CTX_get_fd()
106 curr = curr->next; in ASYNC_WAIT_CTX_get_all_fds()
134 curr = curr->next; in ASYNC_WAIT_CTX_get_changed_fds()
159 prev->next = curr->next; in ASYNC_WAIT_CTX_clear_fd()
180 curr = curr->next; in ASYNC_WAIT_CTX_clear_fd()
234 prev->next = curr->next; in async_wait_ctx_reset_counts()
[all …]
/freebsd/libexec/talkd/
H A Dtable.c64 TABLE_ENTRY *next; member
79 TABLE_ENTRY *ptr, *next; in find_match() local
87 next = ptr->next; in find_match()
113 TABLE_ENTRY *ptr, *next; in find_request() local
125 next = ptr->next; in find_request()
166 ptr->next = table; in insert_table()
167 if (ptr->next != NIL) in insert_table()
168 ptr->next->last = ptr; in insert_table()
221 table = ptr->next; in delete()
223 ptr->last->next = ptr->next; in delete()
[all …]
/freebsd/crypto/openssl/crypto/evp/
H A Dbio_md.c77 BIO *next; in md_read() local
83 next = BIO_next(b); in md_read()
88 ret = BIO_read(next, out, outl); in md_read()
105 BIO *next; in md_write() local
111 next = BIO_next(b); in md_write()
124 if (next != NULL) { in md_write()
137 BIO *dbio, *next; in md_ctrl() local
141 next = BIO_next(b); in md_ctrl()
198 BIO *next; in md_callback_ctrl() local
200 next = BIO_next(b); in md_callback_ctrl()
[all …]
/freebsd/contrib/diff/src/
H A Dcontext.c210 while (next && next->line0 + next->deleted <= i) in pr_context_hunk()
211 next = next->link; in pr_context_hunk()
216 if (next && next->line0 <= i) in pr_context_hunk()
239 while (next && next->line1 + next->inserted <= i) in pr_context_hunk()
240 next = next->link; in pr_context_hunk()
245 if (next && next->line1 <= i) in pr_context_hunk()
333 next = hunk; in pr_unidiff_hunk()
342 if (!next || i < next->line0) in pr_unidiff_hunk()
352 k = next->deleted; in pr_unidiff_hunk()
374 next = next->link; in pr_unidiff_hunk()
[all …]
/freebsd/sys/contrib/ck/include/spinlock/
H A Dmcs.h40 struct ck_spinlock_mcs *next; member
63 node->next = NULL; in ck_spinlock_mcs_trylock()
92 node->next = NULL; in ck_spinlock_mcs_lock()
106 ck_pr_store_ptr(&previous->next, node); in ck_spinlock_mcs_lock()
119 struct ck_spinlock_mcs *next; in ck_spinlock_mcs_unlock() local
123 next = ck_pr_load_ptr(&node->next); in ck_spinlock_mcs_unlock()
124 if (next == NULL) { in ck_spinlock_mcs_unlock()
142 next = ck_pr_load_ptr(&node->next); in ck_spinlock_mcs_unlock()
143 if (next != NULL) in ck_spinlock_mcs_unlock()
151 ck_pr_store_uint(&next->locked, false); in ck_spinlock_mcs_unlock()
/freebsd/contrib/bmake/
H A Dlst.c45 ln->next = next; in LstNodeNew()
54 ListNode *ln, *next; in Lst_Done() local
57 next = ln->next; in Lst_Done()
65 ListNode *ln, *next; in Lst_DoneFree() local
68 next = ln->next; in Lst_DoneFree()
85 ln->prev->next = newNode; in Lst_InsertBefore()
125 list->last->next = ln; in Lst_Append()
138 if (ln->next != NULL) in Lst_Remove()
139 ln->next->prev = ln->prev; in Lst_Remove()
141 ln->prev->next = ln->next; in Lst_Remove()
[all …]
/freebsd/contrib/wpa/src/ap/
H A Dvlan_full.c59 for (next = *dynamic_ifaces; next; next = next->next) { in dyn_iface_get()
64 if (next) { in dyn_iface_get()
73 next = os_zalloc(sizeof(*next)); in dyn_iface_get()
74 if (!next) in dyn_iface_get()
76 os_strlcpy(next->ifname, ifname, sizeof(next->ifname)); in dyn_iface_get()
79 next->next = *dynamic_ifaces; in dyn_iface_get()
96 for (next = *dynamic_ifaces; next; next = next->next) { in dyn_iface_put()
102 if (!next) in dyn_iface_put()
110 prev->next = next->next; in dyn_iface_put()
112 *dynamic_ifaces = next->next; in dyn_iface_put()
[all …]
/freebsd/sys/contrib/ck/include/
H A Dck_stack.h36 struct ck_stack_entry *next; member
59 entry->next = stack; in ck_stack_push_upmc()
63 entry->next = stack; in ck_stack_push_upmc()
83 entry->next = stack; in ck_stack_trypush_upmc()
105 next = entry->next; in ck_stack_pop_upmc()
111 next = entry->next; in ck_stack_pop_upmc()
209 update.head = original.head->next; in ck_stack_pop_mpmc()
241 update.head = original.head->next; in ck_stack_trypop_mpmc()
277 entry->next = NULL; in ck_stack_push_mpnc()
294 entry->next = target->head; in ck_stack_push_spnc()
[all …]
/freebsd/usr.sbin/pmcstudy/
H A Deval_expr.c55 at->next = ex; in alloc_and_hook_expr()
225 ex->next = at; in walk_back_and_insert_paren()
235 ex->next = at; in walk_back_and_insert_paren()
281 at = frm->next; in walk_fwd_and_insert_paren()
286 ex->next = at->next; in walk_fwd_and_insert_paren()
288 at->next = ex; in walk_fwd_and_insert_paren()
292 at = at->next; in walk_fwd_and_insert_paren()
302 at = at->next; in walk_fwd_and_insert_paren()
344 at = at->next; in add_precendence()
384 at = at->next; in set_math_precidence()
[all …]

12345678910>>...118