Searched refs:trees (Results 1 - 25 of 35) sorted by relevance

12

/external/dtc/tests/
H A Ddumptrees.c35 } trees[] = { variable in typeref:struct:__anon4974
42 #define NUM_TREES (sizeof(trees) / sizeof(trees[0]))
49 void *blob = trees[i].blob;
50 const char *filename = trees[i].filename;
/external/freetype/src/gzip/
H A Dinfblock.c43 However, static trees define 32 codes (all 5 bits) to fill out the
75 ZFREE(z, s->sub.trees.blens);
218 s->sub.trees.table = t = (uInt)b & 0x3fff;
229 if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
235 s->sub.trees.index = 0;
239 while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
242 s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
245 while (s->sub.trees
[all...]
H A Dinfutil.h20 DTREE, /* get length, distance trees for a dynamic block */
42 } trees; /* if DTREE, decoding info for trees */ member in union:inflate_blocks_state::__anon6651
/external/zlib/src/watcom/
H A Dwatcom_l.mak10 trees.c uncompr.c zutil.c
15 trees.obj uncompr.obj zutil.obj
32 wlib -b -c $(ZLIB_LIB) -+trees.obj -+uncompr.obj -+zutil.obj
H A Dwatcom_f.mak10 trees.c uncompr.c zutil.c
15 trees.obj uncompr.obj zutil.obj
32 wlib -b -c $(ZLIB_LIB) -+trees.obj -+uncompr.obj -+zutil.obj
/external/opencv/ml/src/
H A Dmlrtrees.cpp181 // Random trees //
189 trees = NULL;
202 delete trees[k];
203 cvFree( &trees );
322 trees = (CvForestTree**)cvAlloc( sizeof(trees[0])*max_ntrees );
323 memset( trees, 0, sizeof(trees[0])*max_ntrees );
372 trees[ntrees] = new CvForestTree();
373 tree = trees[ntree
[all...]
/external/zlib/src/contrib/delphi/
H A Dzlibd32.mak22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
H A DZLib.pas208 {$L trees.obj}
/external/zlib/src/contrib/pascal/
H A Dzlibd32.mak22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
60 trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
H A Dzlibpas.pas184 {$L trees.obj}
/external/libpng/contrib/pngminim/encoder/
H A Dmakefile32 trees$(C) zutil$(C)
35 #ZH = zlib.h crc32.h deflate.h trees.h zutil.h
36 ZH = zlib.h crc32.h deflate.h trees.h zutil.h
51 trees$(O) zutil$(O)
/external/pdfium/third_party/
H A Dpdfiumzlib.mk30 zlib_v128/trees.c \
/external/regex-re2/doc/
H A Dmksyntaxgo25 Package syntax parses regular expressions into parse trees and compiles
26 parse trees into programs. Most clients of regular expressions will use the
/external/boringssl/src/crypto/x509v3/
H A Dv3_ncons.c77 STACK_OF(GENERAL_SUBTREE) *trees, BIO *bp,
174 STACK_OF(GENERAL_SUBTREE) *trees,
179 if (sk_GENERAL_SUBTREE_num(trees) > 0)
181 for (i = 0; i < sk_GENERAL_SUBTREE_num(trees); i++) {
182 tree = sk_GENERAL_SUBTREE_value(trees, i);
/external/protobuf/src/google/protobuf/
H A Dtext_format.cc141 // Remove any nested information trees, as they are owned by this tree.
157 vector<TextFormat::ParseInfoTree*>* trees = &nested_[field]; local
158 GOOGLE_CHECK(trees);
159 trees->push_back(instance);
194 const vector<TextFormat::ParseInfoTree*>* trees = FindOrNull(nested_, field); local
195 if (trees == NULL || index >= trees->size()) {
199 return (*trees)[index];
/external/zlib/src/
H A Dmake_vms.com203 $ CALL MAKE trees.OBJ "CC ''CCOPT' trees" -
204 trees.c deflate.h zutil.h zlib.h zconf.h
431 deflate.obj, trees.obj, zutil.obj, inflate.obj, \
469 trees.obj : trees.c deflate.h zutil.h zlib.h zconf.h
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas51 /// How to create and navigate trees. Rather than have a separate factory
67 /// Create a tree node from Token object; for CommonTree type trees,
169 /// for non-flat trees.
171 /// Flat trees such as for lists like "idlist : ID+ ;" are left alone
181 /// For identifying trees. How to identify nodes so we can say "add node
268 /// method right before returning. Flat trees (i.e., lists) will
412 /// What adaptor can tell me how to interpret/navigate nodes and trees.
429 /// such as CommonTreeNodeStream that work on these kinds of trees. You
430 /// don't have to make your trees implement this interface, but if you do,
433 /// NOTE: When constructing trees, ANTL
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb90 (instead of basic tokens), and adds some helper methods for working with trees.
195 wraps a token, a list of child trees, and some information about the collective
200 tree nodes as well as the methods trees need to implement.
463 application, building trees with all of this extra information may be
468 the customized lighter-weight trees.
669 trees. Using an adaptor object permits a single recognizer to work with any
671 on customized tree structures. For example, if you want to represent trees using
/external/dtc/Documentation/
H A Ddtc-paper.tex14 \title{Device trees everywhere}
384 The device trees for embedded boards are usually quite simple, and
469 makes it easy to create interrupt trees without having to explicitly
529 that \dtc could include to make creating device trees more convenient:
541 board-specific purpose. For example, many of Apple's device trees
/external/syslinux/mk/
H A Dlib.mk174 zlib/uncompr.o zlib/deflate.o zlib/trees.o zlib/zutil.o \
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.equinox.preferences_3.5.300.v20150408-1437.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/v8/benchmarks/
H A Dearley-boyer.js4329 var trees;
4338 (trees = null);
4345 (trees = (sc_append((deriv_trees(sc_conf_107, i, j, sc_enders_102, sc_steps_103, sc_names_104, sc_toks_105, sc_states_106, BgL_sc_nbzd2nts_108zd2)), trees)));
4351 return trees;

Completed in 2496 milliseconds

12