Searched refs:tree (Results 51 - 75 of 344) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/include/libxml/
H A Dc14n.h27 #include <libxml/tree.h>
H A Ddict.h15 #include <libxml/tree.h>
H A DMakefile.am15 tree.h \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dnutdec.d3 libavutil/timer.h libavutil/tree.h libavformat/nut.h \
H A Dnutenc.d3 libavutil/internal.h libavutil/timer.h libavutil/tree.h \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/mlx4/
H A Dcq.c11 * COPYING in the main directory of this source tree, or the
81 cq = radix_tree_lookup(&mlx4_priv(dev)->cq_table.tree,
100 cq = radix_tree_lookup(&cq_table->tree, cqn & (dev->caps.num_cqs - 1));
155 err = radix_tree_insert(&cq_table->tree, cq->cqn, cq);
193 radix_tree_delete(&cq_table->tree, cq->cqn);
222 radix_tree_delete(&cq_table->tree, cq->cqn);
240 INIT_RADIX_TREE(&cq_table->tree, GFP_ATOMIC);
H A Dsrq.c7 * COPYING in the main directory of this source tree, or the
67 srq = radix_tree_lookup(&srq_table->tree, srqn & (dev->caps.num_srqs - 1));
127 err = radix_tree_insert(&srq_table->tree, srq->srqn, srq);
164 radix_tree_delete(&srq_table->tree, srq->srqn);
190 radix_tree_delete(&srq_table->tree, srq->srqn);
214 INIT_RADIX_TREE(&srq_table->tree, GFP_ATOMIC);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-sharp/
H A DMakefile.am67 avahi-sharp-docs.zip: avahi-sharp-docs.tree
69 avahi-sharp-docs.tree: $(srcdir)/en/*/*
73 monodoc_DATA = avahi-sharp-docs.zip avahi-sharp-docs.tree avahi-sharp-docs.source
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-ui-sharp/
H A DMakefile.am54 avahi-ui-sharp-docs.zip: avahi-ui-sharp-docs.tree
56 avahi-ui-sharp-docs.tree: $(srcdir)/en/*/*
60 monodoc_DATA = avahi-ui-sharp-docs.zip avahi-ui-sharp-docs.tree avahi-ui-sharp-docs.source
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hfsplus/
H A Dinode.c45 struct hfs_btree *tree; local
52 tree = HFSPLUS_SB(sb).ext_tree;
55 tree = HFSPLUS_SB(sb).cat_tree;
58 tree = HFSPLUS_SB(sb).attr_tree;
64 if (tree->node_size >= PAGE_CACHE_SIZE) {
65 nidx = page->index >> (tree->node_size_shift - PAGE_CACHE_SHIFT);
66 spin_lock(&tree->hash_lock);
67 node = hfs_bnode_findhash(tree, nidx);
76 spin_unlock(&tree->hash_lock);
78 nidx = page->index << (PAGE_CACHE_SHIFT - tree
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dm_ematch.c175 static int parse_tree(struct nlmsghdr *n, struct ematch *tree) argument
180 for (t = tree; t; t = t->next) {
229 static int flatten_tree(struct ematch *head, struct ematch *tree) argument
237 if (tree->child) {
239 t->next = tree->child;
240 count += flatten_tree(head, tree->child);
243 if (tree->relation == 0)
246 tree = tree->next;
476 fprintf(stderr, "Missing ematch tree heade
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestRelax.c51 static int tree = 0; variable
76 if ((!strcmp(argv[i], "-tree")) || (!strcmp(argv[i], "--tree"))) {
77 tree++;
131 if (tree)
173 printf("\t--debug : dump a debug tree of the in-memory document\n");
176 printf("\t--tree : print the intermediate Relax-NG document tree\n");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/contrib/misc/
H A Dcnid.lua36 local function fname(buffer, pinfo, tree, len, ofs)
40 local subtree = tree:add(buffer(ofs, len +4), buffer(ofs +4, len):string())
47 function dbd_proto.dissector(buffer, pinfo, tree)
52 local subtree = tree:add(dbd_proto,buffer(),"Netatalk DBD Wire Protocol")
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.c190 ush dad; /* father node in Huffman tree */
203 ct_data *dyn_tree; /* the dynamic tree */
205 static_tree_desc *stat_desc; /* the corresponding static tree */
313 struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */
314 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
315 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
317 struct tree_desc_s l_desc; /* desc. for literal tree */
318 struct tree_desc_s d_desc; /* desc. for distance tree */
319 struct tree_desc_s bl_desc; /* desc. for bit length tree */
322 /* number of codes at each bit length for an optimal tree */
1852 ct_data *tree = desc->dyn_tree; local
1981 ct_data *tree = desc->dyn_tree; local
4103 inflate_huft *tree; /* pointer into tree */ member in struct:inflate_codes_state::__anon1538::__anon1539
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-sel-eng.h34 #include <libxml/tree.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-sel-eng.h34 #include <libxml/tree.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dpattern.in.h4 * either in a tree or based on a parser state.
15 #include <libxml/tree.h>
H A Dschematron.in.h18 #include <libxml/tree.h>
H A Duri.in.h15 #include <libxml/tree.h>
43 * This function is in tree.h:
H A Dxlink.in.h14 #include <libxml/tree.h>
H A Dxmlsave.in.h14 #include <libxml/tree.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/VMS/
H A Dinstall.com1 $! INSTALL.COM -- Installs the files in a given directory tree
6 $! P1 root of the directory tree
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Dinstall.com1 $! INSTALL.COM -- Installs the files in a given directory tree
6 $! P1 root of the directory tree
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/VMS/
H A Dinstall.com1 $! INSTALL.COM -- Installs the files in a given directory tree
6 $! P1 root of the directory tree
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Dinstall.com1 $! INSTALL.COM -- Installs the files in a given directory tree
6 $! P1 root of the directory tree

Completed in 509 milliseconds

1234567891011>>