taglinefilesource code
node15arch/sparc/kernel/auxio.cint node, auxio_nd;
node18arch/sparc/kernel/auxio.cnode = prom_getchild(prom_root_node);
node19arch/sparc/kernel/auxio.cauxio_nd = prom_searchsiblings(node, "auxiliary-io");
node21arch/sparc/kernel/auxio.cnode = prom_searchsiblings(node, "obio");
node22arch/sparc/kernel/auxio.cnode = prom_getchild(node);
node23arch/sparc/kernel/auxio.cauxio_nd = prom_searchsiblings(node, "auxio");
node262arch/sparc/kernel/probe.cregister int node, type;
node269arch/sparc/kernel/probe.cnode = 0;
node274arch/sparc/kernel/probe.cif(sparc_cpu_model == sun4c) node=prom_getchild(prom_root_node);
node277arch/sparc/kernel/probe.cnode=prom_getchild(prom_searchsiblings(prom_getchild(prom_root_node), "obio"));
node281arch/sparc/kernel/probe.cprom_getstring(node, "model", node_str, sizeof(node_str));
node284arch/sparc/kernel/probe.cif(prom_getproperty(node, "reg", (char *) clk_reg, sizeof(clk_reg)) == -1) {
node300arch/sparc/kernel/probe.cif(prom_getproperty(node, "reg", (char *) clk_reg,
node316arch/sparc/kernel/probe.cnode = prom_getsibling(node);
node317arch/sparc/kernel/probe.cif(node == 0) {
node387arch/sparc/kernel/probe.cint node, auxio_nd;
node390arch/sparc/kernel/probe.cnode = prom_getchild(prom_root_node);
node391arch/sparc/kernel/probe.cauxio_nd = prom_searchsiblings(node, "auxiliary-io");
node393arch/sparc/kernel/probe.cnode = prom_searchsiblings(node, "obio");
node394arch/sparc/kernel/probe.cnode = prom_getchild(node);
node395arch/sparc/kernel/probe.cauxio_nd = prom_searchsiblings(node, "auxio");
node97arch/sparc/kernel/time.cregister int node, type;
node104arch/sparc/kernel/time.cnode = 0;
node109arch/sparc/kernel/time.cif(sparc_cpu_model == sun4c) node=prom_getchild(prom_root_node);
node112arch/sparc/kernel/time.cnode=prom_getchild(prom_searchsiblings(prom_getchild(prom_root_node), "obio"));
node116arch/sparc/kernel/time.cprom_getstring(node, "model", node_str, sizeof(node_str));
node119arch/sparc/kernel/time.cif(prom_getproperty(node, "reg", (char *) clk_reg, sizeof(clk_reg)) == -1) {
node135arch/sparc/kernel/time.cif(prom_getproperty(node, "reg", (char *) clk_reg,
node151arch/sparc/kernel/time.cnode = prom_getsibling(node);
node152arch/sparc/kernel/time.cif(node == 0) {
node36arch/sparc/prom/devtree.cint node;
node69arch/sparc/prom/memory.cint node = 0;
node109arch/sparc/prom/memory.cnode = prom_getchild(prom_root_node);
node110arch/sparc/prom/memory.cnode = prom_searchsiblings(node, "memory");
node111arch/sparc/prom/memory.cnum_regs = prom_getproperty(node, "available",
node125arch/sparc/prom/memory.cnum_regs = prom_getproperty(node, "reg",
node139arch/sparc/prom/memory.cnode = prom_getchild(prom_root_node);
node140arch/sparc/prom/memory.cnode = prom_searchsiblings(node, "virtual-memory");
node141arch/sparc/prom/memory.cnum_regs = prom_getproperty(node, "available",
node74arch/sparc/prom/ranges.cint node, obio_node, sbus_node;
node81arch/sparc/prom/ranges.cnode = prom_getchild(prom_root_node);
node82arch/sparc/prom/ranges.cobio_node = prom_searchsiblings(node, "obio");
node83arch/sparc/prom/ranges.csbus_node = prom_searchsiblings(node, "iommu");
node19arch/sparc/prom/tree.cprom_getchild(int node)
node23arch/sparc/prom/tree.cif(node == -1) return 0;
node24arch/sparc/prom/tree.ccnode = prom_nodeops->no_child(node);
node33arch/sparc/prom/tree.cprom_getsibling(int node)
node37arch/sparc/prom/tree.cif(node == -1) return 0;
node38arch/sparc/prom/tree.csibnode = prom_nodeops->no_nextnode(node);
node47arch/sparc/prom/tree.cprom_getproplen(int node, char *prop)
node49arch/sparc/prom/tree.cif((!node) || (!prop)) return -1;
node50arch/sparc/prom/tree.creturn prom_nodeops->no_proplen(node, prop);
node58arch/sparc/prom/tree.cprom_getproperty(int node, char *prop, char *buffer, int bufsize)
node62arch/sparc/prom/tree.cplen = prom_getproplen(node, prop);
node66arch/sparc/prom/tree.creturn prom_nodeops->no_getprop(node, prop, buffer);
node73arch/sparc/prom/tree.cprom_getint(int node, char *prop)
node77arch/sparc/prom/tree.cif(prom_getproperty(node, prop, (char *) &intprop, sizeof(int)) != -1)
node88arch/sparc/prom/tree.cprom_getintdefault(int node, char *property, int deflt)
node92arch/sparc/prom/tree.cretval = prom_getint(node, property);
node100arch/sparc/prom/tree.cprom_getbool(int node, char *prop)
node104arch/sparc/prom/tree.cretval = prom_getproplen(node, prop);
node114arch/sparc/prom/tree.cprom_getstring(int node, char *prop, char *user_buf, int ubuf_size)
node118arch/sparc/prom/tree.clen = prom_getproperty(node, prop, user_buf, ubuf_size);
node129arch/sparc/prom/tree.cprom_nodematch(int node, char *name)
node132arch/sparc/prom/tree.cprom_getproperty(node, "name", namebuf, sizeof(namebuf));
node160arch/sparc/prom/tree.cprom_firstprop(int node)
node162arch/sparc/prom/tree.cif(node == -1) return "";
node163arch/sparc/prom/tree.creturn prom_nodeops->no_nextprop(node, (char *) 0x0);
node171arch/sparc/prom/tree.cprom_nextprop(int node, char *oprop)
node173arch/sparc/prom/tree.cif(node == -1) return "";
node174arch/sparc/prom/tree.creturn prom_nodeops->no_nextprop(node, oprop);
node178arch/sparc/prom/tree.cprom_node_has_property(int node, char *prop)
node183arch/sparc/prom/tree.ccurrent_property = prom_nextprop(node, current_property);
node194arch/sparc/prom/tree.cprom_setprop(int node, char *pname, char *value, int size)
node198arch/sparc/prom/tree.creturn prom_nodeops->no_setprop(node, pname, value, size);
node162drivers/char/mem.cstatic int read_null(struct inode * node, struct file * file, char * buf, int count)
node172drivers/char/mem.cstatic int read_zero(struct inode * node, struct file * file, char * buf, int count)
node192drivers/char/mem.cstatic int read_full(struct inode * node, struct file * file, char * buf,int count)
node56include/asm-sparc/dma.hint node;                /* Prom node for this DMA device */
node175include/asm-sparc/openprom.hint (*no_nextnode)(int node);
node176include/asm-sparc/openprom.hint (*no_child)(int node);
node177include/asm-sparc/openprom.hint (*no_proplen)(int node, char *name);
node178include/asm-sparc/openprom.hint (*no_getprop)(int node, char *name, char *val);
node179include/asm-sparc/openprom.hint (*no_setprop)(int node, char *name, char *val, int len);
node180include/asm-sparc/openprom.hchar * (*no_nextprop)(int node, char *name);
node218include/asm-sparc/oplib.hextern int prom_getsibling(int node);
node232include/asm-sparc/oplib.hextern int prom_getint(int node, char *property);
node235include/asm-sparc/oplib.hextern int prom_getintdefault(int node, char *property, int defval);
node238include/asm-sparc/oplib.hextern int prom_getbool(int node, char *prop);
node241include/asm-sparc/oplib.hextern void prom_getstring(int node, char *prop, char *buf, int bufsize);
node254include/asm-sparc/oplib.hextern char *prom_firstprop(int node);
node259include/asm-sparc/oplib.hextern char *prom_nextprop(int node, char *prev_property);
node262include/asm-sparc/oplib.hextern int prom_node_has_property(int node, char *property);
node267include/asm-sparc/oplib.hextern int prom_setprop(int node, char *prop_name, char *prop_value,
node11include/linux/lists.h#define DNODE_SINGLE(node) {(node),(node)}
node21include/linux/lists.h#define DLIST_INSERT_AFTER(node, new, listnam)  do {    \
node22include/linux/lists.h(new)->listnam.dl_prev = (node);      \
node23include/linux/lists.h(new)->listnam.dl_next = (node)->listnam.dl_next;  \
node24include/linux/lists.h(node)->listnam.dl_next->listnam.dl_prev = (new);  \
node25include/linux/lists.h(node)->listnam.dl_next = (new);      \
node28include/linux/lists.h#define DLIST_INSERT_BEFORE(node, new, listnam)  do {    \
node29include/linux/lists.h(new)->listnam.dl_next = (node);      \
node30include/linux/lists.h(new)->listnam.dl_prev = (node)->listnam.dl_prev;  \
node31include/linux/lists.h(node)->listnam.dl_prev->listnam.dl_next = (new);  \
node32include/linux/lists.h(node)->listnam.dl_prev = (new);      \
node35include/linux/lists.h#define DLIST_DELETE(node, listnam)  do {    \
node36include/linux/lists.hnode->listnam.dl_prev->listnam.dl_next =    \
node37include/linux/lists.hnode->listnam.dl_next;        \
node38include/linux/lists.hnode->listnam.dl_next->listnam.dl_prev =    \
node39include/linux/lists.hnode->listnam.dl_prev;        \
node68include/linux/ncp.h__u8  node[IPX_NODE_LEN]     __attribute__ ((packed));
node22include/net/ipx.hunsigned char  node[IPX_NODE_LEN]; 
node107include/net/sock.hunsigned char           node[IPX_NODE_LEN];
node243mm/mmap.cstatic inline void avl_neighbours (struct vm_area_struct * node, struct vm_area_struct * tree, struct vm_area_struct ** to_the_left, struct vm_area_struct ** to_the_right)
node245mm/mmap.cvm_avl_key_t key = node->vm_avl_key;
node263mm/mmap.cif (tree != node) {
node268mm/mmap.cstruct vm_area_struct * node;
node269mm/mmap.cfor (node = tree->vm_avl_left; node->vm_avl_right != avl_empty; node = node->vm_avl_right)
node271mm/mmap.c*to_the_left = node;
node274mm/mmap.cstruct vm_area_struct * node;
node275mm/mmap.cfor (node = tree->vm_avl_right; node->vm_avl_left != avl_empty; node = node->vm_avl_left)
node277mm/mmap.c*to_the_right = node;
node279mm/mmap.cif ((*to_the_left && ((*to_the_left)->vm_next != node)) || (node->vm_next != *to_the_right))
node293mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node294mm/mmap.cstruct vm_area_struct * nodeleft = node->vm_avl_left;
node295mm/mmap.cstruct vm_area_struct * noderight = node->vm_avl_right;
node315mm/mmap.cnode->vm_avl_left = nodeleftright; nodeleft->vm_avl_right = node;
node316mm/mmap.cnodeleft->vm_avl_height = 1 + (node->vm_avl_height = 1 + heightleftright);
node329mm/mmap.cnode->vm_avl_left = nodeleftright->vm_avl_right;
node331mm/mmap.cnodeleftright->vm_avl_right = node;
node332mm/mmap.cnodeleft->vm_avl_height = node->vm_avl_height = heightleftright;
node343mm/mmap.cnode->vm_avl_right = noderightleft; noderight->vm_avl_left = node;
node344mm/mmap.cnoderight->vm_avl_height = 1 + (node->vm_avl_height = 1 + heightrightleft);
node348mm/mmap.cnode->vm_avl_right = noderightleft->vm_avl_left;
node350mm/mmap.cnoderightleft->vm_avl_left = node;
node351mm/mmap.cnoderight->vm_avl_height = node->vm_avl_height = heightrightleft;
node358mm/mmap.cif (height == node->vm_avl_height)
node360mm/mmap.cnode->vm_avl_height = height;
node374mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node375mm/mmap.cif (node == avl_empty)
node378mm/mmap.cif (key < node->vm_avl_key)
node379mm/mmap.cnodeplace = &node->vm_avl_left;
node381mm/mmap.cnodeplace = &node->vm_avl_right;
node403mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node404mm/mmap.cif (node == avl_empty)
node407mm/mmap.cif (key < node->vm_avl_key) {
node408mm/mmap.c*to_the_right = node;
node409mm/mmap.cnodeplace = &node->vm_avl_left;
node411mm/mmap.c*to_the_left = node;
node412mm/mmap.cnodeplace = &node->vm_avl_right;
node432mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node433mm/mmap.cif (node == avl_empty) {
node439mm/mmap.cif (key == node->vm_avl_key)
node441mm/mmap.cif (key < node->vm_avl_key)
node442mm/mmap.cnodeplace = &node->vm_avl_left;
node444mm/mmap.cnodeplace = &node->vm_avl_right;
node454mm/mmap.cstruct vm_area_struct * node;
node456mm/mmap.cnode = *nodeplace;
node457mm/mmap.cif (node->vm_avl_right == avl_empty)
node460mm/mmap.cnodeplace = &node->vm_avl_right;
node462mm/mmap.c*nodeplace = node->vm_avl_left;
node464mm/mmap.cnode->vm_avl_left = node_to_delete->vm_avl_left;
node465mm/mmap.cnode->vm_avl_right = node_to_delete->vm_avl_right;
node466mm/mmap.cnode->vm_avl_height = node_to_delete->vm_avl_height;
node467mm/mmap.c*nodeplace_to_delete = node; /* replace node_to_delete */
node468mm/mmap.c*stack_ptr_to_delete = &node->vm_avl_left; /* replace &node_to_delete->vm_avl_left */
node490net/appletalk/ddp.cstatic struct atalk_iface *atalk_find_anynet(int node, struct device *dev)
node497net/appletalk/ddp.cif ( node == ATADDR_BCAST || iface->address.s_node == node ) 
node507net/appletalk/ddp.cstatic struct atalk_iface *atalk_find_interface(int net, int node)
node512net/appletalk/ddp.cif((node==ATADDR_BCAST || iface->address.s_node==node) 
node276net/ipx/af_ipx.cunsigned char *node, unsigned short port)
node283net/ipx/af_ipx.c&& (memcmp(node, s->protinfo.af_ipx.node, IPX_NODE_LEN) == 0))
node389net/ipx/af_ipx.cint is_broadcast = (memcmp(ipx->ipx_dest.node, ipx_broadcast_node,
node398net/ipx/af_ipx.c|| (memcmp(ipx->ipx_dest.node, s->protinfo.af_ipx.node,
node573net/ipx/af_ipx.cstatic int ipxitf_send(ipx_interface *intrfc, struct sk_buff *skb, char *node)
node602net/ipx/af_ipx.cif (memcmp(intrfc->if_node, node, IPX_NODE_LEN) == 0) 
node620net/ipx/af_ipx.cif (memcmp(ipx_broadcast_node, node, IPX_NODE_LEN) == 0) 
node664net/ipx/af_ipx.cif (memcmp(ipx_broadcast_node, node, IPX_NODE_LEN) == 0) 
node667net/ipx/af_ipx.cmemcpy(dest_node, &(node[IPX_NODE_LEN-addr_len]), addr_len);
node779net/ipx/af_ipx.cif ((memcmp(ipx_broadcast_node, ipx->ipx_dest.node, IPX_NODE_LEN) == 0) 
node780net/ipx/af_ipx.c|| (memcmp(intrfc->if_node, ipx->ipx_dest.node, IPX_NODE_LEN) == 0)) 
node1101net/ipx/af_ipx.cipxrtr_add_route(unsigned long network, ipx_interface *intrfc, unsigned char *node)
node1119net/ipx/af_ipx.cif (node == NULL) {
node1123net/ipx/af_ipx.cmemcpy(rt->ir_router_node, node, IPX_NODE_LEN);
node1290net/ipx/af_ipx.cmemcpy(ipx->ipx_source.node, sk->protinfo.af_ipx.node, IPX_NODE_LEN);
node1296net/ipx/af_ipx.cmemcpy(ipx->ipx_source.node, intrfc->if_node, IPX_NODE_LEN);
node1301net/ipx/af_ipx.cmemcpy(ipx->ipx_source.node, sk->protinfo.af_ipx.intrfc->if_node, IPX_NODE_LEN);
node1306net/ipx/af_ipx.cmemcpy(ipx->ipx_dest.node,usipx->sipx_node,IPX_NODE_LEN);
node1329net/ipx/af_ipx.crt->ir_router_node : ipx->ipx_dest.node);
node1347net/ipx/af_ipx.cr->ir_router_node : ipx->ipx_dest.node);
node1482net/ipx/af_ipx.cs->protinfo.af_ipx.node[0],
node1483net/ipx/af_ipx.cs->protinfo.af_ipx.node[1], 
node1484net/ipx/af_ipx.cs->protinfo.af_ipx.node[2], 
node1485net/ipx/af_ipx.cs->protinfo.af_ipx.node[3], 
node1486net/ipx/af_ipx.cs->protinfo.af_ipx.node[4], 
node1487net/ipx/af_ipx.cs->protinfo.af_ipx.node[5],
node1500net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[0],
node1501net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[1], 
node1502net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[2],
node1503net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[3], 
node1504net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[4],
node1505net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[5],
node1806net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.node, intrfc->if_node,
node1811net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.node, addr->sipx_node, IPX_NODE_LEN);
node1814net/ipx/af_ipx.csk->protinfo.af_ipx.node, 
node1830net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.node, intrfc->if_node, 
node1896net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.dest_addr.node,
node1934net/ipx/af_ipx.cmemcpy(sipx.sipx_node,addr->node,IPX_NODE_LEN);
node1940net/ipx/af_ipx.cmemcpy(sipx.sipx_node, sk->protinfo.af_ipx.node, IPX_NODE_LEN);
node1996net/ipx/af_ipx.cstr,ntohl(p->net),p->node[0],p->node[1],p->node[2],
node1997net/ipx/af_ipx.cp->node[3],p->node[4],p->node[5],ntohs(p->sock));
node2104net/ipx/af_ipx.cmemcpy(usipx->sipx_node,sk->protinfo.af_ipx.dest_addr.node,IPX_NODE_LEN);
node2149net/ipx/af_ipx.cmemcpy(sipx->sipx_node,ipx->ipx_source.node,IPX_NODE_LEN);