Searched refs:node (Results 201 - 225 of 2115) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/xrc/
H A Dxh_statbar.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_stbmp.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_stbox.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_stlin.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_sttxt.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_text.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_tglbtn.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_tree.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_unkwn.h25 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_bmp.h25 virtual bool CanHandle(wxXmlNode *node);
35 virtual bool CanHandle(wxXmlNode *node);
H A Dxh_menu.h25 virtual bool CanHandle(wxXmlNode *node);
38 virtual bool CanHandle(wxXmlNode *node);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A Dredboot-83xx.c27 void *node; local
33 node = finddevice("/soc/cpm/brg");
34 if (node) {
37 setprop(node, "clock-frequency", &bd.bi_busfreq, 4);
H A Dredboot-8xx.c26 void *node; local
32 node = finddevice("/soc/cpm/brg");
33 if (node) {
36 setprop(node, "clock-frequency", &bd.bi_busfreq, 4);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dtopology.h32 #define parent_node(node) ((void)(node),0)
34 #define cpumask_of_node(node) ((void)node, cpu_online_mask)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dtopology.h22 /* Mappings between logical cpu number and node number. */
26 /* Returns the number of the node containing CPU 'cpu'. */
33 * Returns the number of the node containing Node 'node'.
36 #define parent_node(node) (node)
38 /* Returns a bitmask of CPUs on Node 'node'. */
39 static inline const struct cpumask *cpumask_of_node(int node) argument
41 return &node_2_cpu_mask[node];
44 /* For now, use numa node
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Dpgalloc.h16 extern void m68k_setup_node(int node);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dslob_def.h14 void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
22 void *__kmalloc_node(size_t size, gfp_t flags, int node);
24 static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) argument
26 return __kmalloc_node(size, flags, node);
H A Dof_i2c.h21 extern struct i2c_client *of_find_i2c_device_by_node(struct device_node *node);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Ddatalink.h15 struct list_head node; member in struct:datalink_proto
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/befs/
H A Dbtree.c58 * it states that the overflow field of node headers is used by internal nodes
59 * to point to another node that "effectively continues this one". Here is what
60 * I believe that means. Each key in internal nodes points to another node that
62 * in the internal node is not the last key in the index. Keys that are
63 * greater than the last key in the internal node go into the overflow node.
66 * Second, it states that the header of a btree node is sufficient to
79 * In memory structure of each btree node
82 befs_host_btree_nodehead head; /* head of node converted to cpu byteorder */
84 befs_btree_nodehead *od_node; /* on disk node */
193 befs_bt_read_node(struct super_block *sb, befs_data_stream * ds, befs_btree_node * node, befs_off_t node_off) argument
336 befs_find_key(struct super_block *sb, befs_btree_node * node, const char *findkey, befs_off_t * value) argument
602 befs_leafnode(befs_btree_node * node) argument
625 befs_bt_keylen_index(befs_btree_node * node) argument
646 befs_bt_valarray(befs_btree_node * node) argument
662 befs_bt_keydata(befs_btree_node * node) argument
678 befs_bt_get_key(struct super_block *sb, befs_btree_node * node, int index, u16 * keylen) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/gizmos/
H A Dxh_statpict.cpp46 // Returns true if we know how to create a control for the given node.
47 bool wxStaticPictureXmlHandler::CanHandle(wxXmlNode *node) argument
49 return IsOfClass(node, wxT("wxStaticPicture"));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/src/
H A Dtool_operhlp.c40 struct getout *node = config->url_list; local
42 while(node) {
43 next = node->next;
44 Curl_safefree(node->url);
45 Curl_safefree(node->outfile);
46 Curl_safefree(node->infile);
47 Curl_safefree(node);
48 node = next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/xrc/
H A Dxh_grid.cpp46 bool wxGridXmlHandler::CanHandle(wxXmlNode *node) argument
48 return IsOfClass(node, wxT("wxGrid"));
H A Dxh_stbmp.cpp50 bool wxStaticBitmapXmlHandler::CanHandle(wxXmlNode *node) argument
52 return IsOfClass(node, wxT("wxStaticBitmap"));
H A Dxh_stbox.cpp50 bool wxStaticBoxXmlHandler::CanHandle(wxXmlNode *node) argument
52 return IsOfClass(node, wxT("wxStaticBox"));

Completed in 107 milliseconds

1234567891011>>