Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 4641) sorted by relevance

12345678910>>...186

/netbsd/lib/libbluetooth/
H A Dsdp_data.c493 next[0], next[1], next[2], next[3], in _sdp_data_print()
494 next[4], next[5], next[6], next[7], in _sdp_data_print()
495 next[8], next[9], next[10], next[11], in _sdp_data_print()
496 next[12], next[13], next[14], next[15]); in _sdp_data_print()
507 next[0], next[1], next[2], next[3], in _sdp_data_print()
508 next[4], next[5], next[6], next[7], in _sdp_data_print()
509 next[8], next[9], next[10], next[11], in _sdp_data_print()
510 next[12], next[13], next[14], next[15]); in _sdp_data_print()
524 next[0], next[1], next[2], next[3], in _sdp_data_print()
528 next[10], next[11], next[12], in _sdp_data_print()
[all …]
H A Dsdp_put.c57 memcpy(data->next, value->next, (size_t)len); in sdp_put_data()
101 data->next += 3; in sdp_put_uuid16()
114 data->next += 5; in sdp_put_uuid32()
140 data->next += 2; in sdp_put_bool()
172 data->next += 2; in sdp_put_uint8()
185 data->next += 3; in sdp_put_uint16()
198 data->next += 5; in sdp_put_uint32()
211 data->next += 9; in sdp_put_uint64()
243 data->next += 2; in sdp_put_int8()
256 data->next += 3; in sdp_put_int16()
[all …]
/netbsd/usr.sbin/sdpd/
H A Dservice.c95 || d.next + 1 + d.next[0] != d.end) in service_search_request()
148 d.next += 1; in service_search_request()
212 || d.next + 1 + d.next[0] != d.end) in service_attribute_request()
255 tmp = b.next; in service_attribute_request()
279 b.next += 1; in service_attribute_request()
335 || d.next + 1 + d.next[0] != d.end) in service_search_attribute_request()
407 b.next += 1; in service_search_attribute_request()
532 if (buf->next >= buf->start && buf->next < buf->end) in sdpd_put_byte()
535 buf->next++; in sdpd_put_byte()
569 next = buf->next; in sdpd_close_seq()
[all …]
/netbsd/usr.bin/find/
H A Doperator.c67 node->next = NULL; in yanknode()
117 tail->next = next; in yankexpr()
118 tail = next; in yankexpr()
183 next->p_data[0] = not_squish(next->p_data[0]); in not_squish()
205 next = node; in not_squish()
214 tail->next = next; in not_squish()
215 tail = next; in not_squish()
241 next->p_data[0] = or_squish(next->p_data[0]); in or_squish()
245 next->p_data[0] = or_squish(next->p_data[0]); in or_squish()
266 tail->next = next; in or_squish()
[all …]
/netbsd/external/gpl3/binutils/dist/gprofng/src/
H A DHeapMap.cc64 HeapChunk *next = c->next; in ~HeapMap() local
66 c = next; in ~HeapMap()
97 if ((next == NULL) || (next->addr < incoming->addr)) in allocate()
100 incoming->next = next; in allocate()
116 next = next->next; in allocate()
137 prev->next = cur->next; in deallocate()
255 cur->next = prev->next; in process()
270 cur->next = prev->next; in process()
278 next->size = c_end - next->addr; in process()
280 next->next = cur->next; in process()
[all …]
/netbsd/external/ibm-public/postfix/dist/src/global/
H A Dtok822_tree.c131 TOK822 *next = t1->next; in tok822_append() local
140 t2->next = next; in tok822_append()
141 if (next) in tok822_append()
172 prev->next = 0; in tok822_cut_before()
182 TOK822 *next = tp->next; in tok822_cut_after() local
184 if (next) { in tok822_cut_after()
186 tp->next = 0; in tok822_cut_after()
196 TOK822 *next = tp->next; in tok822_unlink() local
199 prev->next = next; in tok822_unlink()
200 if (next) in tok822_unlink()
[all …]
/netbsd/external/gpl2/rcs/dist/src/
H A Drcsrev.c421 next = next->next;
446 next=next->next;
467 next = next->next;
468 if (!next)
472 if (!next || cmpnumfld(revno,next->num,1) != 0) {
496 next->num, next->author
503 next->state ? next->state : "<empty>"
581 next=next->next;
591 next=next->next;
613 next = next->next;
[all …]
/netbsd/external/gpl2/libmalloc/dist/
H A Dfree.c84 _heapinfo[block].free.next = _heapinfo[i].free.next;
99 = _heapinfo[_heapinfo[block].free.next].free.next;
140 next = prev;
142 next = next->next;
143 prev->prev->next = next;
144 if (next != NULL)
163 next->next = prev->next;
165 prev->next = next;
166 if (next->next != NULL)
167 next->next->prev = next;
[all …]
H A Dmalloc.c171 struct list *next; local
212 next = _fraghead[log].next;
213 if (next != NULL)
219 next->prev->next = next->next;
220 if (next->next != NULL)
221 next->next->prev = next->prev;
225 ((unsigned long int) ((char *) next->next - (char *) NULL)
246 next->next = _fraghead[log].next;
248 next->prev->next = next;
249 if (next->next != NULL)
[all …]
H A Dgmalloc.c565 next->prev->next = next->next;
566 if (next->next != NULL)
567 next->next->prev = next->prev;
592 next->next = _fraghead[log].next;
594 next->prev->next = next;
596 next->next->prev = next;
863 next = next->next;
884 next->next = prev->next;
886 prev->next = next;
887 if (next->next != NULL)
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/ssl/
H A Dpqueue.c29 item->next = NULL; in pitem_new()
55 pitem *curr, *next; in pqueue_insert() local
63 next != NULL; curr = next, next = next->next) { in pqueue_insert()
69 item->next = next; in pqueue_insert()
83 item->next = NULL; in pqueue_insert()
84 curr->next = item; in pqueue_insert()
106 pitem *next; in pqueue_find() local
112 for (next = pq->items; next->next != NULL; next = next->next) { in pqueue_find()
114 found = next; in pqueue_find()
121 found = next; in pqueue_find()
[all …]
/netbsd/crypto/external/bsd/openssl/dist/ssl/
H A Dpqueue.c29 item->next = NULL; in pitem_new()
55 pitem *curr, *next; in pqueue_insert() local
63 next != NULL; curr = next, next = next->next) { in pqueue_insert()
69 item->next = next; in pqueue_insert()
83 item->next = NULL; in pqueue_insert()
84 curr->next = item; in pqueue_insert()
106 pitem *next; in pqueue_find() local
112 for (next = pq->items; next->next != NULL; next = next->next) { in pqueue_find()
114 found = next; in pqueue_find()
121 found = next; in pqueue_find()
[all …]
/netbsd/external/bsd/ntp/dist/libntp/
H A Dauthreadkeys.c152 KeyDataT *next = NULL; in authreadkeys() local
262 next = NULL; in authreadkeys()
371 next = NULL; in authreadkeys()
376 next->next = list; in authreadkeys()
377 list = next; in authreadkeys()
394 list = next->next; in authreadkeys()
395 MD5auth_setkey(next->keyid, next->keytype, in authreadkeys()
396 next->secbuf, next->seclen, next->keyacclist); in authreadkeys()
398 free_keydata(next); in authreadkeys()
405 list = next->next; in authreadkeys()
[all …]
/netbsd/tests/lib/libbluetooth/
H A Dt_sdp_put.c59 test.next = buf; in ATF_TC_BODY()
93 test.next = buf; in ATF_TC_BODY()
145 test.next = buf; in ATF_TC_BODY()
177 test.next = buf; in ATF_TC_BODY()
202 test.next = buf; in ATF_TC_BODY()
236 test.next = buf; in ATF_TC_BODY()
266 test.next = buf; in ATF_TC_BODY()
299 test.next = buf; in ATF_TC_BODY()
338 test.next = buf; in ATF_TC_BODY()
367 test.next = buf; in ATF_TC_BODY()
[all …]
/netbsd/sys/external/bsd/drm/dist/bsd-core/
H A Ddrm_linux_list.h36 struct list_head *next, *prev; member
44 (head)->next = head; in INIT_LIST_HEAD()
50 return (head)->next == head; in list_empty()
56 (new)->next = (head)->next; in list_add()
58 (head)->next = new; in list_add()
64 (entry)->next = head; in list_add_tail()
65 (head)->prev->next = entry; in list_add_tail()
72 (entry)->prev->next = (entry)->next; in list_del()
78 (entry)->prev->next = (entry)->next; in list_del_init()
83 for (entry = (head)->next; entry != head; entry = (entry)->next)
[all …]
/netbsd/sys/external/bsd/drm/dist/shared-core/
H A Di915_mem.c76 list[(unsigned)list[i].prev].next = list[i].next; in mark_block()
81 list[i].next = list[nr].next; in mark_block()
103 newblock->next = p->next; in split_block()
120 newblock->next = p->next; in split_block()
139 for (p = heap->next; p != heap; p = p->next) { in alloc_block()
152 for (p = heap->next; p != heap; p = p->next) in find_block()
169 p->next = q->next; in free_block()
177 q->next = p->next; in free_block()
219 for (p = heap->next; p != heap; p = p->next) { in i915_mem_release()
229 for (p = heap->next; p != heap; p = p->next) { in i915_mem_release()
[all …]
/netbsd/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dzfs_rlock.c273 rl_t *next; in zfs_range_add_reader() local
303 if (next == NULL || off + len <= next->r_off) { in zfs_range_add_reader()
321 for (prev = NULL; next; prev = next, next = AVL_NEXT(tree, next)) { in zfs_range_add_reader()
330 if (off + len == next->r_off + next->r_len) { in zfs_range_add_reader()
332 next = zfs_range_proxify(tree, next); in zfs_range_add_reader()
336 if (off + len < next->r_off + next->r_len) { in zfs_range_add_reader()
338 next = zfs_range_split(tree, next, off + len); in zfs_range_add_reader()
342 ASSERT3U(off + len, >, next->r_off + next->r_len); in zfs_range_add_reader()
343 next = zfs_range_proxify(tree, next); in zfs_range_add_reader()
396 for (; next; next = AVL_NEXT(tree, next)) { in zfs_range_lock_reader()
[all …]
/netbsd/sys/dev/raidframe/
H A Drf_aselect.c67 (*hdr)->next = NULL; in InitHdrNode()
304 vfple = tmpvfple->next; in rf_SelectAlgorithm()
311 vfple = tmpvfple->next; in rf_SelectAlgorithm()
410 asmhle = asmhle->next; in rf_SelectAlgorithm()
411 vfple = vfple->next; in rf_SelectAlgorithm()
450 while (endASMList->next) in rf_SelectAlgorithm()
489 asmhle = asmhle->next; in rf_SelectAlgorithm()
490 vfple = vfple->next; in rf_SelectAlgorithm()
507 asmhle = tmpasmhle->next; in rf_SelectAlgorithm()
520 vfple = tmpvfple->next; in rf_SelectAlgorithm()
[all …]
/netbsd/sbin/rcorder/
H A Drcorder.c119 f_provnode *next; member
124 f_reqnode *next; member
129 strnodelist *next; member
229 ent->next = *listp; in strnode_add()
260 temp->next = fn_head->next; in filenode_new()
355 pnode->next = head->next; in add_provide()
502 pnode->next = head->next; in make_fake_provision()
701 r = r->next; in do_file()
720 pnode->last->next = pnode->next; in do_file()
723 p = p->next; in do_file()
[all …]
/netbsd/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
H A Dlist.h113 struct list_head *next, *prev; member
132 list->next = list->prev = list; in INIT_LIST_HEAD()
139 next->prev = entry; in __list_add()
140 entry->next = next; in __list_add()
142 prev->next = entry; in __list_add()
163 __list_add(entry, head, head->next); in list_add()
190 next->prev = prev; in __list_del()
191 prev->next = next; in __list_del()
211 __list_del(entry->prev, entry->next); in list_del()
224 __list_del(list->prev, list->next); in list_move_tail()
[all …]
/netbsd/bin/csh/
H A Dparse.c121 if (p->next != p2 && eq(p->next->word, STRand)) in asyn0()
122 p = p->next; in asyn0()
179 alout.prev->prev->next = p1->next; in asyn3()
181 p1->next = alout.next; in asyn3()
196 p1 = p1->next; in freenod()
253 if (p->next != p2 && eq(p->next->word, STRand)) in syn0()
254 p = p->next; in syn0()
461 p = p->next; in syn3()
528 lp = p->next; in syn3()
542 if (p->next != p2 && eq(p->next->word, STRand)) { in syn3()
[all …]
/netbsd/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
H A Dnouveau_nvkm_subdev_fb_ramgk104.c215 struct nvkm_ram_data *next = ram->base.next; in r1373f4_fini() local
260 struct nvkm_ram_data *next = ram->base.next; in gk104_ram_calc_gddr5() local
331 if (next->bios.ramcfg_11_02_80) in gk104_ram_calc_gddr5()
404 if (!next->bios.ramcfg_11_07_08 && !next->bios.ramcfg_11_07_04) { in gk104_ram_calc_gddr5()
711 struct nvkm_ram_data *next = ram->base.next; in gk104_ram_calc_sddr3() local
736 if (next->bios.ramcfg_DLLoff) in gk104_ram_calc_sddr3()
1068 refclk = next->freq; in gk104_ram_calc_xits()
1095 ram->base.freq = next->freq; in gk104_ram_calc_xits()
1125 if (ram->base.next == NULL) { in gk104_ram_calc()
1241 struct nvkm_ram_data *next = ram->base.next; in gk104_ram_prog() local
[all …]
/netbsd/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dgl_anylinked_list2.h135 return (node->next != &list->root ? node->next : NULL); in gl_linked_next_node()
158 node = node->next; in gl_linked_get_at()
184 node = node->next; in gl_linked_set_at()
254 for (node = list->root.next; ; node = node->next) in gl_linked_search_from_to()
516 ASYNCSAFE(gl_list_node_t) node->next = list->root.next; in gl_linked_add_first()
609 ASYNCSAFE(gl_list_node_t) new_node->next = node->next; in gl_linked_add_after()
653 ASYNCSAFE(gl_list_node_t) new_node->next = node->next; in gl_linked_add_at()
692 next = node->next; in gl_linked_remove_node()
694 ASYNCSAFE(gl_list_node_t) prev->next = next; in gl_linked_remove_node()
721 after_removed = node->next->next; in gl_linked_remove_at()
[all …]
/netbsd/external/mpl/dhcp/dist/omapip/
H A Ddispatch.c67 t->next = q; in OMAPI_OBJECT_ALLOC()
84 t->next = q->next; in unregister_eventhandler()
142 for (obj = omapi_io_states.next; obj != NULL; obj = obj->next) { in omapi_iscsock_cb()
285 p && p -> next; p = p -> next) in omapi_register_io_object()
383 for (p = omapi_io_states.next; p; p = p -> next) { in omapi_unregister_io_object()
386 omapi_io_reference (&last -> next, p -> next, MDL); in omapi_unregister_io_object()
391 if (obj -> next) in omapi_unregister_io_object()
736 for (io = omapi_io_states.next; io; io = io -> next) { in omapi_one_dispatch()
814 next = NULL; in omapi_one_dispatch()
816 omapi_io_reference(&next, io->next, MDL); in omapi_one_dispatch()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dbitmap.c256 element->next = ptr->next; in bitmap_list_link_element()
279 prev->next = next;
333 node->next = elt->next;
447 t->next = t->next->prev; in bitmap_tree_rotate_left()
524 e->next = t->next; in bitmap_tree_link_element()
551 t->next = e->next; in bitmap_tree_unlink_element()
1323 next = a_elt->next; in bitmap_and_into()
1344 next = a_elt->next; in bitmap_and_into()
1558 next = a_elt->next; in bitmap_and_compl_into()
1841 next = a_elt->next; in bitmap_compl_and_into()
[all …]

12345678910>>...186