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));
node21include/net/ipx.hunsigned char  node[IPX_NODE_LEN]; 
node100include/net/sock.hunsigned char           node[IPX_NODE_LEN];
node255mm/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)
node257mm/mmap.cvm_avl_key_t key = node->vm_avl_key;
node275mm/mmap.cif (tree != node) {
node280mm/mmap.cstruct vm_area_struct * node;
node281mm/mmap.cfor (node = tree->vm_avl_left; node->vm_avl_right != avl_empty; node = node->vm_avl_right)
node283mm/mmap.c*to_the_left = node;
node286mm/mmap.cstruct vm_area_struct * node;
node287mm/mmap.cfor (node = tree->vm_avl_right; node->vm_avl_left != avl_empty; node = node->vm_avl_left)
node289mm/mmap.c*to_the_right = node;
node291mm/mmap.cif ((*to_the_left && ((*to_the_left)->vm_next != node)) || (node->vm_next != *to_the_right))
node305mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node306mm/mmap.cstruct vm_area_struct * nodeleft = node->vm_avl_left;
node307mm/mmap.cstruct vm_area_struct * noderight = node->vm_avl_right;
node327mm/mmap.cnode->vm_avl_left = nodeleftright; nodeleft->vm_avl_right = node;
node328mm/mmap.cnodeleft->vm_avl_height = 1 + (node->vm_avl_height = 1 + heightleftright);
node341mm/mmap.cnode->vm_avl_left = nodeleftright->vm_avl_right;
node343mm/mmap.cnodeleftright->vm_avl_right = node;
node344mm/mmap.cnodeleft->vm_avl_height = node->vm_avl_height = heightleftright;
node355mm/mmap.cnode->vm_avl_right = noderightleft; noderight->vm_avl_left = node;
node356mm/mmap.cnoderight->vm_avl_height = 1 + (node->vm_avl_height = 1 + heightrightleft);
node360mm/mmap.cnode->vm_avl_right = noderightleft->vm_avl_left;
node362mm/mmap.cnoderightleft->vm_avl_left = node;
node363mm/mmap.cnoderight->vm_avl_height = node->vm_avl_height = heightrightleft;
node370mm/mmap.cif (height == node->vm_avl_height)
node372mm/mmap.cnode->vm_avl_height = height;
node386mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node387mm/mmap.cif (node == avl_empty)
node390mm/mmap.cif (key < node->vm_avl_key)
node391mm/mmap.cnodeplace = &node->vm_avl_left;
node393mm/mmap.cnodeplace = &node->vm_avl_right;
node415mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node416mm/mmap.cif (node == avl_empty)
node419mm/mmap.cif (key < node->vm_avl_key) {
node420mm/mmap.c*to_the_right = node;
node421mm/mmap.cnodeplace = &node->vm_avl_left;
node423mm/mmap.c*to_the_left = node;
node424mm/mmap.cnodeplace = &node->vm_avl_right;
node444mm/mmap.cstruct vm_area_struct * node = *nodeplace;
node445mm/mmap.cif (node == avl_empty) {
node451mm/mmap.cif (key == node->vm_avl_key)
node453mm/mmap.cif (key < node->vm_avl_key)
node454mm/mmap.cnodeplace = &node->vm_avl_left;
node456mm/mmap.cnodeplace = &node->vm_avl_right;
node466mm/mmap.cstruct vm_area_struct * node;
node468mm/mmap.cnode = *nodeplace;
node469mm/mmap.cif (node->vm_avl_right == avl_empty)
node472mm/mmap.cnodeplace = &node->vm_avl_right;
node474mm/mmap.c*nodeplace = node->vm_avl_left;
node476mm/mmap.cnode->vm_avl_left = node_to_delete->vm_avl_left;
node477mm/mmap.cnode->vm_avl_right = node_to_delete->vm_avl_right;
node478mm/mmap.cnode->vm_avl_height = node_to_delete->vm_avl_height;
node479mm/mmap.c*nodeplace_to_delete = node; /* replace node_to_delete */
node480mm/mmap.c*stack_ptr_to_delete = &node->vm_avl_left; /* replace &node_to_delete->vm_avl_left */
node483net/appletalk/ddp.cstatic struct atalk_iface *atalk_find_anynet(int node, struct device *dev)
node490net/appletalk/ddp.cif ( node == ATADDR_BCAST || iface->address.s_node == node ) 
node500net/appletalk/ddp.cstatic struct atalk_iface *atalk_find_interface(int net, int node)
node505net/appletalk/ddp.cif((node==ATADDR_BCAST || iface->address.s_node==node) 
node267net/ipx/af_ipx.cunsigned char *node, unsigned short port)
node274net/ipx/af_ipx.c&& (memcmp(node, s->protinfo.af_ipx.node, IPX_NODE_LEN) == 0))
node376net/ipx/af_ipx.cint is_broadcast = (memcmp(ipx->ipx_dest.node, ipx_broadcast_node,
node385net/ipx/af_ipx.c|| (memcmp(ipx->ipx_dest.node, s->protinfo.af_ipx.node,
node560net/ipx/af_ipx.cstatic int ipxitf_send(ipx_interface *intrfc, struct sk_buff *skb, char *node)
node589net/ipx/af_ipx.cif (memcmp(intrfc->if_node, node, IPX_NODE_LEN) == 0) 
node607net/ipx/af_ipx.cif (memcmp(ipx_broadcast_node, node, IPX_NODE_LEN) == 0) 
node651net/ipx/af_ipx.cif (memcmp(ipx_broadcast_node, node, IPX_NODE_LEN) == 0) 
node654net/ipx/af_ipx.cmemcpy(dest_node, &(node[IPX_NODE_LEN-addr_len]), addr_len);
node766net/ipx/af_ipx.cif ((memcmp(ipx_broadcast_node, ipx->ipx_dest.node, IPX_NODE_LEN) == 0) 
node767net/ipx/af_ipx.c|| (memcmp(intrfc->if_node, ipx->ipx_dest.node, IPX_NODE_LEN) == 0)) 
node1076net/ipx/af_ipx.cipxrtr_add_route(unsigned long network, ipx_interface *intrfc, unsigned char *node)
node1094net/ipx/af_ipx.cif (node == NULL) {
node1098net/ipx/af_ipx.cmemcpy(rt->ir_router_node, node, IPX_NODE_LEN);
node1207net/ipx/af_ipx.cmemcpy(ipx->ipx_source.node, sk->protinfo.af_ipx.node, IPX_NODE_LEN);
node1213net/ipx/af_ipx.cmemcpy(ipx->ipx_source.node, intrfc->if_node, IPX_NODE_LEN);
node1218net/ipx/af_ipx.cmemcpy(ipx->ipx_source.node, sk->protinfo.af_ipx.intrfc->if_node, IPX_NODE_LEN);
node1223net/ipx/af_ipx.cmemcpy(ipx->ipx_dest.node,usipx->sipx_node,IPX_NODE_LEN);
node1237net/ipx/af_ipx.crt->ir_router_node : ipx->ipx_dest.node);
node1255net/ipx/af_ipx.cr->ir_router_node : ipx->ipx_dest.node);
node1389net/ipx/af_ipx.cs->protinfo.af_ipx.node[0],
node1390net/ipx/af_ipx.cs->protinfo.af_ipx.node[1], 
node1391net/ipx/af_ipx.cs->protinfo.af_ipx.node[2], 
node1392net/ipx/af_ipx.cs->protinfo.af_ipx.node[3], 
node1393net/ipx/af_ipx.cs->protinfo.af_ipx.node[4], 
node1394net/ipx/af_ipx.cs->protinfo.af_ipx.node[5],
node1407net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[0],
node1408net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[1], 
node1409net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[2],
node1410net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[3], 
node1411net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[4],
node1412net/ipx/af_ipx.cs->protinfo.af_ipx.dest_addr.node[5],
node1728net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.node, intrfc->if_node,
node1733net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.node, addr->sipx_node, IPX_NODE_LEN);
node1736net/ipx/af_ipx.csk->protinfo.af_ipx.node, 
node1752net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.node, intrfc->if_node, 
node1818net/ipx/af_ipx.cmemcpy(sk->protinfo.af_ipx.dest_addr.node,
node1854net/ipx/af_ipx.cmemcpy(sipx.sipx_node,addr->node,IPX_NODE_LEN);
node1860net/ipx/af_ipx.cmemcpy(sipx.sipx_node, sk->protinfo.af_ipx.node, IPX_NODE_LEN);
node1916net/ipx/af_ipx.cstr,ntohl(p->net),p->node[0],p->node[1],p->node[2],
node1917net/ipx/af_ipx.cp->node[3],p->node[4],p->node[5],ntohs(p->sock));
node2019net/ipx/af_ipx.cmemcpy(usipx->sipx_node,sk->protinfo.af_ipx.dest_addr.node,IPX_NODE_LEN);
node2063net/ipx/af_ipx.cmemcpy(sipx->sipx_node,ipx->ipx_source.node,IPX_NODE_LEN);