/external/zopfli/src/zopfli/ |
D | katajainen.c | 67 static Node* GetFreeNode(Node* (*lists)[2], int maxbits, NodePool* pool) { in GetFreeNode() 75 if (lists) { in GetFreeNode() 78 for (node = lists[i / 2][i % 2]; node; node = node->tail) { in GetFreeNode() 105 static void BoundaryPM(Node* (*lists)[2], int maxbits, in BoundaryPM() 109 int lastcount = lists[index][1]->count; /* Count of last chain of list. */ in BoundaryPM() 113 newchain = GetFreeNode(lists, maxbits, pool); in BoundaryPM() 114 oldchain = lists[index][1]; in BoundaryPM() 118 lists[index][0] = oldchain; in BoundaryPM() 119 lists[index][1] = newchain; in BoundaryPM() 125 size_t sum = lists[index - 1][0]->weight + lists[index - 1][1]->weight; in BoundaryPM() [all …]
|
/external/harfbuzz_ng/win32/ |
D | create-lists-msvc.mak | 9 # if [call create-lists.bat header $(makefile_snippet_file) $(variable_name)] 12 # if [call create-lists.bat file $(makefile_snippet_file) $(file_name)] 15 # if [call create-lists.bat footer $(makefile_snippet_file)] 26 # instead when doing 'if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]' 28 # !if [for %c in ($(source_list)) do @if "%~xc" == ".$(srcext)" @call create-lists.bat file $(makef… 37 !if [call create-lists.bat header hb_objs.mak harfbuzz_dll_OBJS] 40 !if [for %c in ($(HB_SOURCES)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CF… 43 !if [for %c in ($(HB_SOURCES)) do @if "%~xc" == ".c" @call create-lists.bat file hb_objs.mak ^$(CFG… 46 !if [call create-lists.bat footer hb_objs.mak] 52 !if [call create-lists.bat header hb_objs.mak harfbuzz_gobject_OBJS] [all …]
|
D | Makefile.am | 5 create-lists.bat \ 6 create-lists-msvc.mak \
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | RBNFParseTest.java | 117 …te void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) { in parseList() argument 118 for (int i = 0; i < lists.length; ++i) { in parseList() 119 String[] list = lists[i]; in parseList() 142 String[][] lists = { in TestLenientParse() local 155 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse() 161 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | RBNFParseTest.java | 113 …te void parseList(RuleBasedNumberFormat rbnf_en, RuleBasedNumberFormat rbnf_fr, String[][] lists) { in parseList() argument 114 for (int i = 0; i < lists.length; ++i) { in parseList() 115 String[] list = lists[i]; in parseList() 138 String[][] lists = { in TestLenientParse() local 151 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse() 157 parseList(rbnf_en, rbnf_fr, lists); in TestLenientParse()
|
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
D | tracing_category_filter.py | 113 lists = [] 114 lists.append(self._included_categories) 115 lists.append(self._disabled_by_default_categories) 116 lists.append(['-%s' % x for x in self._excluded_categories]) 117 lists.append(self._synthetic_delays) 119 for l in lists:
|
/external/curl/tests/ |
D | directories.pm | 164 %lists = ( 240 $list = $lists{$list_type}; 262 $list = $lists{$list_type}; 285 $list = $lists{$listname};
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
D | AppendTrack.java | 236 ArrayList<ByteBuffer> lists = new ArrayList<ByteBuffer>(); in getSamples() local 239 lists.addAll(track.getSamples()); in getSamples() 242 return lists; in getSamples() 251 List<long[]> lists = new LinkedList<long[]>(); in getDecodingTimeEntries() local 253 lists.add(TimeToSampleBox.blowupTimeToSamples(track.getDecodingTimeEntries())); in getDecodingTimeEntries() 257 for (long[] list : lists) { in getDecodingTimeEntries() 276 List<int[]> lists = new LinkedList<int[]>(); in getCompositionTimeEntries() local 278 … lists.add(CompositionTimeToSample.blowupCompositionTimes(track.getCompositionTimeEntries())); in getCompositionTimeEntries() 281 for (int[] list : lists) { in getCompositionTimeEntries()
|
/external/libexif/m4m/ |
D | gp-references.m4 | 37 [<gphoto-devel@lists.sourceforge.net>], 41 [<gphoto-user@lists.sourceforge.net>], 45 [<gphoto-translation@lists.sourceforge.net>],
|
/external/skia/platform_tools/android/gyp_gen/ |
D | vars_dict_lib.py | 109 lists = [] 112 lists.append(OrderedSet()) 113 return tuple.__new__(cls, lists)
|
/external/snakeyaml/src/etc/ |
D | announcement.msg | 2 To: yaml-core@lists.sourceforge.net 26 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
|
/external/deqp/modules/gles3/scripts/ |
D | gen-swizzles.py | 96 self.lists = list(args) 98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1) 99 print self.lists 103 return [tuple(map(lambda x: x[0], self.lists))]
|
/external/deqp/modules/gles2/scripts/ |
D | gen-swizzles.py | 96 self.lists = list(args) 98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1) 99 print self.lists 103 return [tuple(map(lambda x: x[0], self.lists))]
|
/external/guava/guava/src/com/google/common/collect/ |
D | CartesianList.java | 40 static <E> List<List<E>> create(List<? extends List<? extends E>> lists) { in create() argument 42 new ImmutableList.Builder<List<E>>(lists.size()); in create() 43 for (List<? extends E> list : lists) { in create()
|
/external/valgrind/nightly/conf/ |
D | sless390.sendmail | 3 …ian Borntraeger <borntraeger@de.ibm.com>" -a "$3.gz" valgrind-developers@lists.sourceforge.net < … 6 …" -r "Christian Borntraeger <borntraeger@de.ibm.com>" valgrind-developers@lists.sourceforge.net < …
|
D | fedora390.sendmail | 3 …ian Borntraeger <borntraeger@de.ibm.com>" -a "$3.gz" valgrind-developers@lists.sourceforge.net < … 6 …" -r "Christian Borntraeger <borntraeger@de.ibm.com>" valgrind-developers@lists.sourceforge.net < …
|
/external/chromium-trace/catapult/third_party/Paste/docs/community/ |
D | index.txt | 4 Much of the communication goes on in the `mailing lists 5 <mailing-list.html>`_; see that page for information on the lists.
|
/external/markdown/tests/misc/ |
D | benchmark.dat | 31 lists:0.110000:0.000000 52 tabs-in-lists:0.170000:0.000000
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/ |
D | find_modules.rst | 25 Return two lists: the first one contains the python files in the graph, 49 Updates the lists of includes, packages and excludes for the current 50 platform. This will add items to these lists based on hardcoded platform
|
/external/curl/docs/ |
D | MAIL-ETIQUETTE | 9 1. About the lists 31 1. About the lists 35 The mailing lists we have are all listed and described at 53 mailing lists. 69 All curl mailing lists require that you are subscribed to allow a mail to go 77 to stop spam from pestering the lists. 81 Several of the curl mailing lists automatically make all posts from new 92 actually subscribe and send spam to our lists. 96 Despite our good intentions and hard work to keep spam off the lists and to 122 out to all curl related mailing lists and there's footer in each mail that [all …]
|
/external/compiler-rt/www/ |
D | menu.html.incl | 13 <a href="http://lists.llvm.org/mailman/listinfo/llvm-dev">llvm-dev</a> 14 <a href="http://lists.llvm.org/mailman/listinfo/llvm-commits">llvm-commits</a>
|
/external/deqp/modules/egl/ |
D | teglSimpleConfigCase.cpp | 146 void getDefaultFilterLists (vector<NamedFilterList>& lists, const FilterList& baseFilters) in getDefaultFilterLists() argument 196 lists.push_back(filters); in getDefaultFilterLists() 214 lists.push_back(filters); in getDefaultFilterLists()
|
/external/clang/www/analyzer/ |
D | menu.css | 35 .menubar li ul /* second level lists */ { 49 .menubar li:hover ul, li.over ul { /* lists nested under hovered list items */
|
/external/gemmlowp/ |
D | CONTRIBUTORS.txt | 2 # The AUTHORS.txt file lists the copyright holders; this file 3 # lists people. For example, Google employees are listed here
|
/external/opencv3/modules/ts/misc/ |
D | chart.py | 73 def nextPermutation(indexes, lists, x, y): argument 81 if v < len(lists[idx]): 89 def getTestWideName(sname, indexes, lists, x, y): argument 99 name += lists[i][indexes[i]]
|