Searched refs:node (Results 1 - 25 of 1252) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-x86_64/
H A Dnode.h1 #include <asm-i386/node.h>
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ocfs2/cluster/
H A Dquorum.h29 void o2quo_hb_up(u8 node);
30 void o2quo_hb_down(u8 node);
31 void o2quo_hb_still_up(u8 node);
32 void o2quo_conn_up(u8 node);
33 void o2quo_conn_err(u8 node);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/ospf6d/
H A Dospf6_bintree.c8 struct bintree_node *node; local
13 node = subroot;
14 while (node->bl_left)
15 node = node->bl_left;
16 return node;
22 struct bintree_node *node; local
25 node = subroot;
26 while (node->bl_right)
27 node
35 struct bintree_node *node; local
64 struct bintree_node *node; local
74 struct bintree_node *node; local
85 struct bintree_node *node, *parent; local
139 bintree_remove_nochild(struct bintree_node *node) argument
150 bintree_remove_onechild(struct bintree_node *node) argument
191 struct bintree_node *node; local
275 bintree_head(struct bintree *tree, struct bintree_node *node) argument
298 bintree_end(struct bintree_node *node) argument
317 bintree_next(struct bintree_node *node) argument
394 struct bintree_node node; local
[all...]
H A Dospf6_linklist.c9 struct linklist_node *node; local
11 for (node = linklist->head; node; node = node->next)
13 if (linklist->cmp && (*linklist->cmp) (node->data, data) == 0)
14 return node;
15 if (node->data == data)
16 return node;
25 struct linklist_node *node; local
36 struct linklist_node *node = NULL, *add; local
120 linklist_head(struct linklist *linklist, struct linklist_node *node) argument
136 linklist_end(struct linklist_node *node) argument
144 linklist_next(struct linklist_node *node) argument
175 struct linklist_node node; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/tipc/
H A Dnode_subscr.c2 * net/tipc/node_subscr.c: TIPC "node down" subscription handling
40 #include "node.h"
44 * tipc_nodesub_subscribe - create "node down" subscription for specified node
51 node_sub->node = NULL;
55 node_sub->node = tipc_node_find(addr);
56 if (!node_sub->node) {
57 warn("Node subscription rejected, unknown node 0x%x\n", addr);
63 tipc_node_lock(node_sub->node);
64 list_add_tail(&node_sub->nodesub_list, &node_sub->node
[all...]
H A Dnode.h2 * net/tipc/node.h: Include file for TIPC node management routines
46 * struct node - TIPC node structure
47 * @addr: network address of node
49 * @owner: pointer to cluster that node belongs to
50 * @next: pointer to next node in sorted list of cluster's nodes
51 * @nsub: list of "node down" subscriptions monitoring node
52 * @active_links: pointers to active links to node
71 struct node { struct
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/lib/
H A Dlinklist.c50 struct listnode *node;
52 node = XMALLOC (MTYPE_LINK_NODE, sizeof (struct listnode));
53 memset (node, 0, sizeof (struct listnode));
54 return node;
59 listnode_free (struct listnode *node)
61 XFREE (MTYPE_LINK_NODE, node);
69 struct listnode *node;
71 node = listnode_new ();
73 node->prev = list->tail;
74 node
49 struct listnode *node; local
58 listnode_free(struct listnode *node) argument
67 struct listnode *node; local
163 struct listnode *node; local
190 struct listnode *node; local
203 struct listnode *node; local
221 struct listnode *node; local
238 listnode node; local
248 list_delete_node(list list, listnode node) argument
266 struct listnode *node; local
287 struct listnode *node; local
[all...]
H A Dtable.c49 /* Allocate new route node. */
53 struct route_node *node;
54 node = XCALLOC (MTYPE_ROUTE_NODE, sizeof (struct route_node));
55 return node;
58 /* Allocate new route node with prefix set. */
62 struct route_node *node;
64 node = route_node_new ();
66 prefix_copy (&node->p, prefix);
67 node->table = table;
69 return node;
52 struct route_node *node; local
61 struct route_node *node; local
73 route_node_free(struct route_node *node) argument
83 struct route_node *node; local
192 set_link(struct route_node *node, struct route_node *new) argument
206 route_lock_node(struct route_node *node) argument
214 route_unlock_node(struct route_node *node) argument
226 struct route_node *node; local
243 struct route_node *node; local
298 struct route_node *node; local
319 struct route_node *node; local
371 route_node_delete(struct route_node *node) argument
425 route_next(struct route_node *node) argument
466 route_next_until(struct route_node *node, struct route_node *limit) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/util/
H A Dqueue.c30 qnode_t *node; local
31 if ((node = malloc(sizeof(qnode_t))) == NULL)
33 node->data = data;
35 return node;
56 qnode_t *node; local
58 if ((node = alloc_init_node(data)) == NULL)
62 node->next = q;
63 node->prev = q->prev;
64 q->prev->next = node;
65 q->prev = node;
73 qnode_t *node; local
90 qnode_t *node; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sparc64/prom/
H A Dtree.c17 /* Return the child of node 'node' or zero if no this node has no
21 __prom_getchild(int node) argument
23 return p1275_cmd ("child", P1275_INOUT(1, 1), node);
27 prom_getchild(int node) argument
31 if(node == -1) return 0;
32 cnode = __prom_getchild(node);
38 prom_getparent(int node) argument
42 if(node
52 __prom_getsibling(int node) argument
58 prom_getsibling(int node) argument
75 prom_getproplen(int node, const char *prop) argument
89 prom_getproperty(int node, const char *prop, char *buffer, int bufsize) argument
110 prom_getint(int node, const char *prop) argument
125 prom_getintdefault(int node, const char *property, int deflt) argument
137 prom_getbool(int node, const char *prop) argument
151 prom_getstring(int node, const char *prop, char *user_buf, int ubuf_size) argument
166 prom_nodematch(int node, const char *name) argument
200 prom_firstprop(int node, char *buffer) argument
215 prom_nextprop(int node, const char *oprop, char *buffer) argument
245 prom_node_has_property(int node, const char *prop) argument
262 prom_setprop(int node, const char *pname, char *value, int size) argument
276 int node; local
286 int node, inst; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_anylinked_list2.h24 The list and node fields that are therefore accessed from the signal handler
26 list->root, node->next, node->value.
93 gl_list_node_t node = XMALLOC (struct gl_list_node_impl); local
95 node->value = *contents;
97 node->h.hashcode =
99 ? list->base.hashcode_fn (node->value)
100 : (size_t)(uintptr_t) node->value);
102 /* Add node to the hash table. */
103 add_to_bucket (list, node);
124 gl_linked_node_value(gl_list_t list, gl_list_node_t node) argument
130 gl_linked_next_node(gl_list_t list, gl_list_node_t node) argument
136 gl_linked_previous_node(gl_list_t list, gl_list_node_t node) argument
145 gl_list_node_t node; local
171 gl_list_node_t node; local
236 gl_list_node_t node; local
277 gl_list_node_t node; local
344 gl_list_node_t node = list->root.next; local
387 gl_list_node_t node; local
468 gl_list_node_t node = list->root.next; local
497 gl_list_node_t node = XMALLOC (struct gl_list_node_impl); local
527 gl_list_node_t node = XMALLOC (struct gl_list_node_impl); local
555 gl_linked_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
585 gl_linked_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
639 gl_list_node_t node; local
651 gl_list_node_t node; local
672 gl_linked_remove_node(gl_list_t list, gl_list_node_t node) argument
708 gl_list_node_t node; local
721 gl_list_node_t node; local
747 gl_list_node_t node = gl_linked_search_from_to (list, 0, list->count, elt); local
759 gl_list_node_t node; local
815 gl_list_node_t node; local
829 gl_list_node_t node; local
845 gl_list_node_t node; local
872 gl_list_node_t node = (gl_list_node_t) iterator->p; local
894 gl_list_node_t node; local
925 gl_list_node_t node; local
960 gl_list_node_t node; local
995 gl_list_node_t node; local
1031 gl_list_node_t node; local
1043 gl_list_node_t node; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/lib/
H A Drbtree.c26 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) argument
28 struct rb_node *right = node->rb_right;
29 struct rb_node *parent = rb_parent(node);
31 if ((node->rb_right = right->rb_left))
32 rb_set_parent(right->rb_left, node);
33 right->rb_left = node;
39 if (node == parent->rb_left)
46 rb_set_parent(node, right);
49 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) argument
51 struct rb_node *left = node
72 rb_insert_color(struct rb_node *node, struct rb_root *root) argument
138 __rb_erase_color(struct rb_node *node, struct rb_node *parent, struct rb_root *root) argument
224 rb_erase(struct rb_node *node, struct rb_root *root) argument
321 rb_next(struct rb_node *node) argument
350 rb_prev(struct rb_node *node) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-generic/
H A Dtopology.h36 #define parent_node(node) (0)
39 #define node_to_cpumask(node) (cpu_online_map)
42 #define node_to_first_cpu(node) (0)
45 #define pcibus_to_node(node) (-1)
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/bgpd/
H A Dbgp_table.c61 /* Allocate new route node with prefix set. */
65 struct bgp_node *node;
67 node = bgp_node_create ();
69 prefix_copy (&node->p, prefix);
70 node->table = table;
72 return node;
75 /* Free route node. */
77 bgp_node_free (struct bgp_node *node)
79 XFREE (MTYPE_BGP_NODE, node);
87 struct bgp_node *node;
64 struct bgp_node *node; local
76 bgp_node_free(struct bgp_node *node) argument
86 struct bgp_node *node; local
195 set_link(struct bgp_node *node, struct bgp_node *new) argument
209 bgp_lock_node(struct bgp_node *node) argument
217 bgp_unlock_node(struct bgp_node *node) argument
229 struct bgp_node *node; local
284 struct bgp_node *node; local
305 struct bgp_node *node; local
357 bgp_node_delete(struct bgp_node *node) argument
411 bgp_route_next(struct bgp_node *node) argument
452 bgp_route_next_until(struct bgp_node *node, struct bgp_node *limit) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/hfs/
H A Dbnode.c8 * Handle basic btree node operations
16 void hfs_bnode_read(struct hfs_bnode *node, void *buf, argument
21 off += node->page_offset;
22 page = node->page[0];
28 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) argument
32 hfs_bnode_read(node, &data, off, 2);
36 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) argument
40 hfs_bnode_read(node, &data, off, 1);
44 void hfs_bnode_read_key(struct hfs_bnode *node, void *key, int off) argument
49 tree = node
59 hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) argument
71 hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) argument
78 hfs_bnode_write_u8(struct hfs_bnode *node, int off, u8 data) argument
84 hfs_bnode_clear(struct hfs_bnode *node, int off, int len) argument
117 hfs_bnode_move(struct hfs_bnode *node, int dst, int src, int len) argument
134 hfs_bnode_dump(struct hfs_bnode *node) argument
170 hfs_bnode_unlink(struct hfs_bnode *node) argument
219 struct hfs_bnode *node; local
238 struct hfs_bnode *node, *node2; local
299 hfs_bnode_unhash(struct hfs_bnode *node) argument
316 struct hfs_bnode *node; local
397 hfs_bnode_free(struct hfs_bnode *node) argument
409 struct hfs_bnode *node; local
441 hfs_bnode_get(struct hfs_bnode *node) argument
451 hfs_bnode_put(struct hfs_bnode *node) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dnode.h2 * include/linux/node.h - generic node definition
5 * basic 'struct node' here, which can be embedded in per-arch
8 * Basic handling of the devices is done in drivers/base/node.c
11 * Nodes are exported via driverfs in the class/node/devices/
14 * Per-node interfaces can be implemented using a struct device_interface.
25 struct node { struct
29 extern struct node node_devices[];
31 extern int register_node(struct node *, int, struct node *);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-alpha/
H A Dtopology.h11 int node; local
16 node = alpha_mv.cpuid_to_nid(cpu);
19 BUG_ON(node < 0);
22 return node;
25 static inline cpumask_t node_to_cpumask(int node)
31 if (cpu_to_node(cpu) == node)
36 printk("node %d: cpu_mask: %016lx\n", node, node_cpu_mask);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/sparc/prom/
H A Dtree.c24 int __prom_getchild(int node) argument
30 cnode = prom_nodeops->no_child(node);
37 /* Return the child of node 'node' or zero if no this node has no
40 int prom_getchild(int node) argument
44 if (node == -1)
47 cnode = __prom_getchild(node);
55 int __prom_getsibling(int node) argument
61 cnode = prom_nodeops->no_nextnode(node);
71 prom_getsibling(int node) argument
88 prom_getproplen(int node, char *prop) argument
107 prom_getproperty(int node, char *prop, char *buffer, int bufsize) argument
126 prom_getint(int node, char *prop) argument
139 prom_getintdefault(int node, char *property, int deflt) argument
150 prom_getbool(int node, char *prop) argument
163 prom_getstring(int node, char *prop, char *user_buf, int ubuf_size) argument
177 prom_nodematch(int node, char *name) argument
209 __prom_nextprop(int node, char * oprop) argument
224 prom_firstprop(int node, char *bufer) argument
236 prom_nextprop(int node, char *oprop, char *buffer) argument
248 int node = prom_root_node, node2; local
291 prom_node_has_property(int node, char *prop) argument
306 prom_setprop(int node, char *pname, char *value, int size) argument
322 int node; local
335 int node, inst; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/alpha/kernel/
H A Dgct.c13 gct6_find_nodes(gct6_node *node, gct6_search_struct *search) argument
19 if (node->magic != GCT_NODE_MAGIC) {
28 if (node->type != wanted->type)
30 if (node->subtype != wanted->subtype)
35 wanted->callout(node);
39 if (node->next)
40 status |= gct6_find_nodes(GCT_NODE_PTR(node->next), search);
43 if (node->child)
44 status |= gct6_find_nodes(GCT_NODE_PTR(node->child), search);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/i386/kernel/
H A Dnumaq.c45 int node; local
51 for_each_node(node) {
52 if (scd->quads_present31_0 & (1 << node)) {
53 node_set_online(node);
54 eq = &scd->eq[node];
56 node_start_pfn[node] = MB_TO_PAGES(
58 node_end_pfn[node] = MB_TO_PAGES(
61 memory_present(node,
62 node_start_pfn[node], node_end_pfn[node]);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/python/tests/
H A Dxpathret.py17 # test returning a node set works as expected
21 node = mydoc.newDocText(str)
22 parent.addChild(node)
35 node = res[0] variable
36 if node.name != 'p':
39 node = node.children variable
40 if node.type != 'text':
43 if node.content != 'hello':
H A Dnsdel.py12 def namespaceDefs(node):
13 n = node.nsDefs()
18 def checkNamespaceDefs(node, count):
19 nsList = list(namespaceDefs(node))
29 node = doc.getRootElement() variable
30 checkNamespaceDefs(node, 3)
31 ns = node.removeNsDef('urn:bar')
32 checkNamespaceDefs(node, 2)
38 node = doc.getRootElement() variable
39 checkNamespaceDefs(node,
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ppc/boot/of1275/
H A Dgetprop.c14 getprop(phandle node, const char *name, void *buf, int buflen) argument
20 phandle node; member in struct:prom_args
30 args.node = node;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-arm/arch-ixp4xx/
H A Dmemory.h19 void ixp4xx_adjust_zones(int node, unsigned long *size, unsigned long *holes);
21 #define arch_adjust_zones(node, size, holes) \
22 ixp4xx_adjust_zones(node, size, holes)
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ia64/mm/
H A Ddiscontig.c31 * Track per-node information needed to setup the boot memory allocator, the
32 * per-node areas, and the real VM.
53 * To prevent cache aliasing effects, align per-node structures so that they
54 * start at addresses that are strided by node number.
57 #define NODEDATA_ALIGN(addr, node) \
59 (((node)*PERCPU_PAGE_SIZE) & (MAX_NODE_ALIGN_OFFSET - 1)))
62 * build_node_maps - callback to setup bootmem structs for each node
65 * @node: node where this range resides
68 * treat as a virtually contiguous block (i.e. each node)
74 build_node_maps(unsigned long start, unsigned long len, int node) argument
102 early_nr_cpus_node(int node) argument
117 compute_pernodesize(int node) argument
139 per_cpu_node_setup(void *cpu_data, int node) argument
163 fill_pernode(int node, unsigned long pernode, unsigned long pernodesize) argument
220 find_pernode_space(unsigned long start, unsigned long len, int node) argument
268 free_node_bootmem(unsigned long start, unsigned long len, int node) argument
287 int node; local
313 int node; local
341 int cpu, node; local
374 int bestnode = -1, node, anynode = 0; local
403 int node; local
422 int node; local
625 count_node_pages(unsigned long start, unsigned long len, int node) argument
657 int node; local
[all...]

Completed in 288 milliseconds

1234567891011>>