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

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/namespace/
H A Dnswalk.c72 struct acpi_namespace_node *next_node = NULL; local
81 next_node = parent_node->child;
88 next_node = acpi_ns_get_next_valid_node(child_node);
95 /* next_node is NULL if we are at the end-of-list */
97 return (next_node);
102 while (next_node) {
106 if (next_node->type == type) {
107 return (next_node);
112 next_node = acpi_ns_get_next_valid_node(next_node);
[all...]
H A Dnsnames.c171 struct acpi_namespace_node *next_node; local
180 next_node = node;
182 while (next_node && (next_node != acpi_gbl_root_node)) {
184 next_node = acpi_ns_get_parent_node(next_node);
H A Dnsalloc.c107 struct acpi_namespace_node *next_node; local
114 next_node = parent_node->child;
118 while (next_node != node) {
119 prev_node = next_node;
120 next_node = prev_node->peer;
127 prev_node->peer = next_node->peer;
128 if (next_node->flags & ANOBJ_END_OF_PEER_LIST) {
134 if (next_node->flags & ANOBJ_END_OF_PEER_LIST) {
141 parent_node->child = next_node->peer;
246 struct acpi_namespace_node *next_node; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Ddrm_mm.c185 drm_mm_node_t *next_node; local
197 next_node = list_entry(cur_head->next, drm_mm_node_t, ml_entry);
198 if (next_node->free) {
200 prev_node->size += next_node->size;
201 list_del(&next_node->ml_entry);
202 list_del(&next_node->fl_entry);
203 drm_free(next_node, sizeof(*next_node),
206 next_node->size += cur->size;
207 next_node
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dnutdec.c850 Syncpoint *sp, *next_node[2]= {&nopts_sp, &nopts_sp}; local
862 av_tree_find(nut->syncpoints, &dummy, ff_nut_sp_pts_cmp, next_node);
863 av_log(s, AV_LOG_DEBUG, "%"PRIu64"-%"PRIu64" %"PRId64"-%"PRId64"\n", next_node[0]->pos, next_node[1]->pos,
864 next_node[0]->ts , next_node[1]->ts);
865 pos= av_gen_search(s, -1, dummy.ts, next_node[0]->pos, next_node[1]->pos, next_node[1]->pos,
866 next_node[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfs/
H A Dbtree.c188 struct hfs_bnode *node, *next_node; local
261 next_node = hfs_bmap_new_bmap(node, idx);
263 next_node = hfs_bnode_find(tree, nidx);
265 if (IS_ERR(next_node))
266 return next_node;
267 node = next_node;
H A Dbrec.c308 struct hfs_bnode *next_node = hfs_bnode_find(tree, new_node->next); local
309 next_node->prev = new_node->this;
310 hfs_bnode_read(next_node, &node_desc, 0, sizeof(node_desc));
311 node_desc.prev = cpu_to_be32(next_node->prev);
312 hfs_bnode_write(next_node, &node_desc, 0, sizeof(node_desc));
313 hfs_bnode_put(next_node);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus/
H A Dbtree.c180 struct hfs_bnode *node, *next_node; local
253 next_node = hfs_bmap_new_bmap(node, idx);
255 next_node = hfs_bnode_find(tree, nidx);
257 if (IS_ERR(next_node))
258 return next_node;
259 node = next_node;
H A Dbrec.c306 struct hfs_bnode *next_node = hfs_bnode_find(tree, new_node->next); local
307 next_node->prev = new_node->this;
308 hfs_bnode_read(next_node, &node_desc, 0, sizeof(node_desc));
309 node_desc.prev = cpu_to_be32(next_node->prev);
310 hfs_bnode_write(next_node, &node_desc, 0, sizeof(node_desc));
311 hfs_bnode_put(next_node);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus_journal/
H A Dbtree.c186 struct hfs_bnode *node, *next_node; local
260 next_node = hfs_bmap_new_bmap(hfsplus_handle, node, idx);
262 next_node = hfs_bnode_find(hfsplus_handle, tree, nidx);
264 if (IS_ERR(next_node))
265 return next_node;
266 node = next_node;
H A Dbrec.c308 struct hfs_bnode *next_node = hfs_bnode_find(hfsplus_handle, tree, new_node->next); local
309 next_node->prev = new_node->this;
310 hfs_bnode_read(next_node, &node_desc, 0, sizeof(node_desc));
311 node_desc.prev = cpu_to_be32(next_node->prev);
312 hfs_bnode_write(hfsplus_handle, next_node, &node_desc, 0, sizeof(node_desc));
313 hfs_bnode_put(hfsplus_handle, next_node);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dnodemask.h44 * int next_node(node, mask) Next node past 'node', or MAX_NUMNODES
230 #define next_node(n, src) __next_node((n), &(src)) macro
331 (node) = next_node((node), (mask)))
386 #define next_online_node(nid) next_node((nid), node_states[N_ONLINE])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/tdb/
H A Dtdbutil.c821 TDB_LIST_NODE *next_node; local
824 next_node = node->next;
827 node = next_node;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_list.c70 ->next_node (list, node);
H A Dgl_list.h384 gl_list_node_t (*next_node) (gl_list_t list, gl_list_node_t node); member in struct:gl_list_implementation
497 ->next_node (list, node);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dvty.c303 enum node_type next_node = 0;
315 next_node = host.enable ? VIEW_NODE : ENABLE_NODE;
317 next_node = VIEW_NODE;
324 next_node = ENABLE_NODE;
341 vty->node = next_node; /* Success ! */
301 enum node_type next_node = 0; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/mm/
H A Dnuma.c267 rr = next_node(rr, node_online_map);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dmempolicy.c1075 next = next_node(nid, policy->v.nodes);
1122 nid = next_node(nid, pol->v.nodes);
H A Dhugetlb.c108 nid = next_node(nid, node_online_map);
H A Dslab.c896 node = next_node(cpu_to_node(cpu), node_online_map);
907 node = next_node(node, node_online_map);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dcpuset.c2557 node = next_node(current->cpuset_mem_spread_rotor, current->mems_allowed);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxmlreader.c1893 next_node:
1946 goto next_node;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxmlreader.c1929 next_node:
1982 goto next_node;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ocfs2/
H A Dalloc.c1504 goto next_node;
1525 next_node:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxmlreader.c1893 next_node:
1946 goto next_node;

Completed in 264 milliseconds

12