Searched refs:next_node (Results 1 - 23 of 23) sorted by relevance

/netbsd-current/sys/external/bsd/drm/dist/bsd-core/
H A Ddrm_mm.c235 struct drm_mm_node *next_node; local
248 next_node =
250 if (next_node->free) {
252 prev_node->size += next_node->size;
253 list_del(&next_node->ml_entry);
254 list_del(&next_node->fl_entry);
256 list_add(&next_node->fl_entry,
260 free(next_node, DRM_MEM_MM);
262 next_node->size += cur->size;
263 next_node
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/base/
H A Dheimbase.c737 heim_object_t node, next_node; local
766 next_node = heim_dict_get_value(node, path_element);
768 next_node = _heim_db_get_value(node, NULL, path_element, NULL);
782 next_node = heim_array_get_value(node, idx);
790 node = next_node;
916 heim_object_t next_node = NULL; local
928 next_node = heim_dict_get_value(node, path_element);
943 next_node = heim_array_get_value(node, idx);
945 next_node = NULL;
956 if (next_node
[all...]
/netbsd-current/external/cddl/osnet/dist/cmd/zpool/
H A Dzpool_iter.c168 zpool_node_t *node, *next_node; local
171 for (node = uu_avl_first(zlp->zl_avl); node != NULL; node = next_node) {
172 next_node = uu_avl_next(zlp->zl_avl, node);
/netbsd-current/external/gpl3/gcc.old/dist/libobjc/
H A Dhash.c81 node_ptr next_node; local
94 while ((next_node = node->next))
97 node = next_node;
/netbsd-current/external/gpl3/gcc/dist/libobjc/
H A Dhash.c81 node_ptr next_node; local
94 while ((next_node = node->next))
97 node = next_node;
/netbsd-current/external/bsd/ntp/dist/include/
H A Dntp_prio_q.h48 void *next_node(void *my_node);
/netbsd-current/common/lib/libc/gen/
H A Dptree.c721 uintptr_t node, next_node; local
735 next_node = node;
740 next_node = PT_NULL;
750 next_node = PT_NULL;
758 next_node = PTN_BRANCH_SLOT(ptn, slot + 1);
764 next_node = PTN_BRANCH_SLOT(ptn, slot - 1);
775 next_node = PTN_BRANCH_ROOT_SLOT(ptn);
776 ptn = PT_NODE(next_node);
784 KASSERT(PT_NULL_P(next_node));
790 node = next_node;
[all...]
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Dntp_prio_q.c110 next_node( function
/netbsd-current/external/bsd/openldap/dist/servers/slapd/overlays/
H A Dsssvlv.c416 TAvlnode *cur_node, *next_node; local
419 next_node = ldap_tavl_next( cur_node, TAVL_DIR_RIGHT );
423 cur_node = next_node;
608 TAvlnode *next_node = NULL; local
620 next_node = ldap_tavl_next( cur_node, TAVL_DIR_RIGHT );
629 cur_node = next_node;
642 so->so_tree = next_node;
643 if ( next_node )
644 next_node->avl_left = NULL;
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dintrusive_list.h481 intrusive_list_node<T> *next_node = as_node (elem_node->next); local
482 next_node->prev = elem_node->prev;
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dgl_list.c69 ->next_node (list, node);
H A Dgl_list.h375 gl_list_node_t (*next_node) (gl_list_t list, gl_list_node_t node); member in struct:gl_list_implementation
485 ->next_node (list, node);
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dregexec.c3059 Idx next_node = dfa->nexts[cur_node];
3072 ok = re_node_set_insert (&union_set, next_node);
3225 Idx to_idx, next_node;
3240 next_node = dfa->edests[ent->node].elems[0];
3241 if (re_node_set_contains (cur_nodes, next_node))
3243 err = re_node_set_init_1 (&new_dests, next_node);
3260 next_node = dfa->nexts[ent->node];
3265 next_node))
3269 ok = re_node_set_insert (&union_set, next_node);
3279 err = re_node_set_init_1 (&union_set, next_node);
3055 Idx next_node = dfa->nexts[cur_node]; local
3221 Idx to_idx, next_node; local
3393 Idx next_node; local
[all...]
/netbsd-current/external/gpl2/dtc/dist/pylibfdt/
H A Dlibfdt.i152 def next_node(self, nodeoffset, depth, quiet=()):
/netbsd-current/external/cddl/osnet/dist/cmd/zfs/
H A Dzfs_main.c4363 fs_perm_node_t *next_node = local
4369 node = next_node;
4409 deleg_perm_node_t *next_node = local
4414 node = next_node;
4445 who_perm_node_t *next_node = uu_avl_next(fsperm->fsp_sc_avl, local
4451 node = next_node;
4456 who_perm_node_t *next_node = uu_avl_next(fsperm->fsp_uge_avl, local
4462 node = next_node;
/netbsd-current/sbin/fsck_udf/
H A Dmain.c3855 struct udf_fsck_node *cur_node, *next_node; local
4010 TAILQ_FOREACH_SAFE(cur_node, &fs_nodes, next, next_node) {
4095 TAILQ_FOREACH_SAFE(cur_node, &fs_nodes, next, next_node) {
4122 TAILQ_FOREACH_SAFE(cur_node, &fs_nodes, next, next_node) {
4158 struct udf_fsck_node *cur_node, *next_node; local
4163 TAILQ_FOREACH_SAFE(cur_node, &fs_nodes, next, next_node) {
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dpasses.c1487 struct pass_list_node *next_node = added_pass_nodes->next;
1493 added_pass_nodes = next_node;
1486 struct pass_list_node *next_node = added_pass_nodes->next; local
/netbsd-current/external/gpl2/dtc/dist/tests/
H A Dpylibfdt_tests.py237 node, depth = self.fdt.next_node(node, depth, (libfdt.BADOFFSET,))
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-vect-slp.cc97 this->next_node = slp_first_node;
122 this->prev_node->next_node = this->next_node;
124 slp_first_node = this->next_node;
125 if (this->next_node)
126 this->next_node->prev_node = this->prev_node;
H A Dpasses.cc1534 struct pass_list_node *next_node = added_pass_nodes->next;
1540 added_pass_nodes = next_node;
1533 struct pass_list_node *next_node = added_pass_nodes->next; local
H A Dtree-vectorizer.h220 slp_tree next_node; member in struct:_slp_tree
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/
H A Dzone.c9721 goto next_node;
9881 next_node:
/netbsd-current/external/mpl/bind/dist/lib/dns/
H A Dzone.c9715 goto next_node;
9875 next_node:

Completed in 305 milliseconds