| /external/libaom/av1/encoder/ |
| D | speed_features.h | 142 SUBPEL_TREE_PRUNED = 1, // Prunes 1/2-pel searches 143 SUBPEL_TREE_PRUNED_MORE = 2, // Prunes 1/2-pel searches more aggressively 150 // Try the full image filter search with non-dual filter only. 202 // similar, but applies much more aggressive pruning to get better speed-up 220 // Turns off multi-winner mode. So we will do txfm search on either all modes 238 PRUNE_NEARMV_LEVEL1 = 1, // Prune nearmv for qindex (0-85) 239 PRUNE_NEARMV_LEVEL2 = 2, // Prune nearmv for qindex (0-170) 240 PRUNE_NEARMV_LEVEL3 = 3, // Prune nearmv more aggressively for qindex (0-170) 262 // 1 - 1024: Probability threshold used for conditionally forcing tx type, 268 // Prune less likely chosen transforms for each intra mode. The speed [all …]
|
| /external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/ |
| D | target.pbtxt | 1 # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-contro… 2 …-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-prune-unused-n… 3 …-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-prune-unused-n… 169 # CHECK-LABEL: func @main 170 # CHECK-SAME: control_outputs = "AssignAdd" 171 # CHECK-SAME: inputs = "" 172 # CHECK-SAME: outputs = "" 180 # PRUNE-LABEL: func @main 181 # PRUNE-SAME: control_outputs = "AssignAdd" 182 # PRUNE-SAME: inputs = "" [all …]
|
| D | multi-output-feeds.pbtxt | 1 …-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=z… 2 …-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-prune-unused-n… 3 …-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-prune-unused-n… 271 # CHECK-LABEL: func @main 272 # CHECK-SAME: (%[[ARG_0:.*]]: tensor<f32>, %[[ARG_1:.*]]: tensor<f32>) -> (tensor<f32>, tensor<f32… 273 # CHECK-SAME: control_outputs = "" 274 # CHECK-SAME: inputs = "z:1,z:2" 275 # CHECK-SAME: outputs = "z:2,z:1,a:0" 284 # PRUNE-LABEL: func @main 285 # PRUNE-SAME: (%[[ARG_0:.*]]: tensor<f32>, %[[ARG_1:.*]]: tensor<f32>) -> (tensor<f32>, tensor<f32… [all …]
|
| D | prune_unused_nodes.pbtxt | 1 …-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-prune-unused-n… 3 # Verify that an unused Node (here named "Prune") isn't converted when we 5 # CHECK-LABEL: func @main 6 # CHECK-NOT: Prune 7 # CHECK-NOT: unused_input 10 name: "Prune"
|
| /external/toolchain-utils/binary_search_tool/ |
| D | MAINTENANCE | 2 # Use of this source code is governed by a BSD-style license that can be 10 * chromeos-toolchain@ 92 3. The weird options for the --verify, --verbose, --file_args, etc. arguments: 96 functionality for a boolean argument (using --prune as an example): 97 * --prune (prune set to True) 98 * <not given> (prune set to False) 99 * --prune=True (prune set to True) 100 * --prune=False (prune set to False) 104 last two? Imagine if the Android bisector set --prune=True as a default 106 the user to override prune and set it to False. So the user needs the [all …]
|
| D | README.pass_bisect.md | 14 `-opt-bisect-limit` and `print-debug-counter` that only exist in LLVM. 18 All the required arguments in object-file-level bisection tool are still 21 1. `--pass_bisect`: enables pass level bisection 22 2. `--ir_diff`: enables output of IR differences 24 Please refer to `--help` or the examples below for details about how to use 29 *TODO* - Future work: Currently this only works for Android. 45 --pass_bisect=’android/generate_cmd.sh’ 46 --prune=False 47 --ir_diff 48 --verbose [all …]
|
| D | common.py | 1 # -*- coding: utf-8 -*- 3 # Use of this source code is governed by a BSD-style license that can be 48 ['-n', '--iterations'] : { 79 can be safely and easily populated. Each call to this method will have a 1-1 83 *args: The names for the argument (-V, --verbose, etc.) 155 "-n", 156 "--iterations", 163 "-i", 164 "--get_initial_items", 168 "the --verbose option must be used", [all …]
|
| D | binary_search_state.py | 2 # -*- coding: utf-8 -*- 4 # Use of this source code is governed by a BSD-style license that can be 58 with tempfile.NamedTemporaryFile("w", encoding="utf-8") as f: 76 prune, argument 92 self.prune = prune 191 with tempfile.NamedTemporaryFile("w", encoding="utf-8") as f: 208 "--file_args" 229 assert not self.prune, "Prune must be false if pass_bisect is set." 288 # Prune is set. 292 if prune_index == len(self.all_items) - 1: [all …]
|
| /external/javassist/src/main/javassist/scopedpool/ |
| D | ScopedClassPoolRepositoryImpl.java | 2 * Javassist, a Java-bytecode translator toolkit. 3 * Copyright (C) 1999- Shigeru Chiba. All Rights Reserved. 39 /** Whether to prune */ 40 private boolean prune = true; field in ScopedClassPoolRepositoryImpl 42 /** Whether to prune when added to the classpool's cache */ 75 * Returns the value of the prune attribute. 77 * @return the prune. 81 return prune; in isPrune() 85 * Set the prune attribute. 87 * @param prune a new value. [all …]
|
| D | ScopedClassPoolRepository.java | 2 * Javassist, a Java-bytecode translator toolkit. 3 * Copyright (C) 1999- Shigeru Chiba. All Rights Reserved. 43 * @return the prune. 48 * Sets the prune flag. 50 * @param prune a new value. 52 void setPrune(boolean prune); in setPrune() argument
|
| /external/clang/test/Modules/ |
| D | prune.m | 12 // RUN: rm -rf %t 14 … -DIMPORT_DEPENDS_ON_MODULE -fmodules-ignore-macro=DIMPORT_DEPENDS_ON_MODULE -fmodules -fimplicit-… 15 … -DIMPORT_DEPENDS_ON_MODULE -fmodules-ignore-macro=DIMPORT_DEPENDS_ON_MODULE -fmodules -fimplicit-… 17 // RUN: ls -R %t | grep ^Module.*pcm 18 // RUN: ls -R %t | grep DependsOnModule.*pcm 20 // Set the timestamp back more than two days. We should try to prune, 22 // RUN: touch -m -a -t 201101010000 %t/modules.timestamp 23 …cc1 -fmodules -fimplicit-module-maps -F %S/Inputs -fmodules-cache-path=%t -fmodules -fmodules-prun… 25 // RUN: ls -R %t | grep ^Module.*pcm 26 // RUN: ls -R %t | grep DependsOnModule.*pcm [all …]
|
| /external/toolchain-utils/binary_search_tool/test/ |
| D | binary_search_tool_test.py | 2 # -*- coding: utf-8 -*- 4 # Use of this source code is governed by a BSD-style license that can be 30 gen_obj.Main(["--obj_num", str(obj_num), "--bad_obj_num", str(bad_obj_num)]) 47 with open("./is_setup", "w", encoding="utf-8"): 79 prune=True, 97 "tail -n1" 120 """Generate [100-1000] object files, and 1-5% of which are bad ones.""" 123 with open("./is_setup", "w", encoding="utf-8"): 157 prune=True, 165 "--get_initial_items", [all …]
|
| /external/llvm/utils/lit/ |
| D | MANIFEST.in | 2 recursive-include tests * 3 recursive-include examples * 4 global-exclude *pyc 5 global-exclude *~ 6 prune tests/Output 7 prune tests/*/Output 8 prune tests/*/*/Output 9 prune tests/*/*/*/Output
|
| /external/angle/src/compiler/translator/tree_ops/ |
| D | PruneNoOps.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 28 bool isEmptyDeclaration = node->getAsDeclarationNode() != nullptr && in IsNoOp() 29 node->getAsDeclarationNode()->getSequence()->empty(); in IsNoOp() 35 if (node->getAsTyped() == nullptr || node->getAsFunctionPrototypeNode() != nullptr) in IsNoOp() 40 return !node->getAsTyped()->hasSideEffects(); in IsNoOp() 62 PruneNoOpsTraverser prune(symbolTable); in apply() local 63 root->traverse(&prune); in apply() 64 return prune.updateTree(compiler, root); in apply() 78 TIntermSequence *sequence = node->getSequence(); in visitDeclaration() 79 if (sequence->size() >= 1) in visitDeclaration() [all …]
|
| /external/perfetto/src/trace_redaction/ |
| D | prune_package_list_unittest.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 41 auto* package = list->add_packages(); in AddPackage() 42 package->set_uid(uid); in AddPackage() 43 package->set_name(std::string(name)); in AddPackage() 49 packet->set_trusted_uid(9999); in CreateTestPacket() 50 packet->set_trusted_packet_sequence_id(2); in CreateTestPacket() 51 packet->set_previous_packet_dropped(true); in CreateTestPacket() 53 auto* packages = packet->mutable_packages_list(); in CreateTestPacket() 60 return packet->SerializeAsString(); in CreateTestPacket() 69 // cmdline: "-O/data/vendor/wifi/wpa/sockets" [all …]
|
| /external/llvm/lib/Fuzzer/test/ |
| D | fuzzer-prunecorpus.test | 1 RUN: rm -rf %t/PruneCorpus 2 RUN: mkdir -p %t/PruneCorpus 5 RUN: LLVMFuzzer-EmptyTest %t/PruneCorpus -prune_corpus=1 -runs=0 2>&1 | FileCheck %s --check-prefix… 6 RUN: LLVMFuzzer-EmptyTest %t/PruneCorpus -prune_corpus=0 -runs=0 2>&1 | FileCheck %s --check-prefix… 7 RUN: rm -rf %t/PruneCorpus 9 PRUNE: READ units: 2 10 PRUNE: INITED{{.*}}units: 1
|
| /external/llvm/include/llvm/Support/ |
| D | CachePruning.h | 1 //=- CachePruning.h - Helper to manage the pruning of a cache dir -*- C++ -*-=// 8 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 23 /// to prune. 26 /// Prepare to prune \p Path. 31 /// prune. A value of 0 forces the scan to occurs. 39 /// the expiration-based pruning. 49 /// 0 disable the size-based pruning. 57 bool prune();
|
| /external/tensorflow/tensorflow/python/eager/ |
| D | wrap_function_test.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 61 # of variables, and possibly different non-template arguments. 82 f_pruned = f_wrapped.prune(x_in[0], [x_out[0]]) 101 f_pruned = f_wrapped.prune(x_in[0], x_out[0]) 136 initializer = wrapped.prune( 164 pruned = wrapped.prune([], wrapped.graph.as_graph_element('output:0')) 187 pruned = f_wrapped.prune( 193 pruned = f_wrapped.prune( 259 pruned = f_wrapped.prune( 280 pruned = f_wrapped.prune( [all …]
|
| /external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
| D | CheckoutArchive.java | 13 alias = "checkout-archive", 14 description = "Checkout CLDR archive to $ARCHIVE (usually ../cldr-archive)", 15 url = "https://cldr.unicode.org/development/creating-the-archive") 18 prune("Perform a 'git prune' first"), enumConstant 54 … + " does not exist, please create it or change the value of -DARCHIVE="); in main() 61 if (MyOptions.prune.option.doesOccur()) { in main() 63 "git", "worktree", "prune", in main() 71 final Path dirName = archiveDir.resolve("cldr-" + ver); in main() 76 final String tag = "release-" + ver.replaceAll("\\.", "-").replaceAll("-0$", ""); in main()
|
| /external/tcpdump/tests/ |
| D | pim-packet-assortment-v.out | 36 …Candidate RP Advertisement, cksum 0xe833 (correct) prefix-cnt=1 prio=78 holdtime=1m31s RP=10.0.0.1… 39 …Candidate RP Advertisement, cksum 0xe824 (correct) prefix-cnt=1 prio=155 holdtime=4m43s RP=10.0.0.… 42 …Candidate RP Advertisement, cksum 0x051a (correct) prefix-cnt=2 prio=213 holdtime=3m17s RP=10.0.0.… 45 …Candidate RP Advertisement, cksum 0xe743 (correct) prefix-cnt=1 prio=180 holdtime=3m42s RP=10.0.0.… 48 …Candidate RP Advertisement, cksum 0xe743 (correct) prefix-cnt=1 prio=180 holdtime=3m42s RP=10.0.0.… 51 …Candidate RP Advertisement, cksum 0xe53f (correct) prefix-cnt=1 prio=85 holdtime=13m51s RP=10.0.0.… 54 …Candidate RP Advertisement, cksum 0xe860 (correct) prefix-cnt=2 prio=63 holdtime=11m10s RP=10.0.0.… 57 …Candidate RP Advertisement, cksum 0xe789 (correct) prefix-cnt=1 prio=139 holdtime=2m58s RP=10.0.0.… 60 …Candidate RP Advertisement, cksum 0xe4a6 (correct) prefix-cnt=1 prio=100 holdtime=15m54s RP=10.0.0… 63 …Candidate RP Advertisement, cksum 0xe622 (correct) prefix-cnt=1 prio=118 holdtime=13m30s RP=10.0.0… [all …]
|
| /external/python/cpython3/Lib/distutils/command/ |
| D | sdist.py | 23 the "--help-formats" command-line option). 41 """Callable used for the check sub-command. 51 ('use-defaults', None, 53 "[default; disable with --no-defaults]"), 54 ('no-defaults', None, 56 ('prune', None, 59 "[default; disable with --no-prune]"), 60 ('no-prune', None, 62 ('manifest-only', 'o', 64 "(implies --force-manifest)"), [all …]
|
| /external/python/setuptools/setuptools/_distutils/command/ |
| D | sdist.py | 23 the "--help-formats" command-line option). 41 """Callable used for the check sub-command. 51 ('use-defaults', None, 53 "[default; disable with --no-defaults]"), 54 ('no-defaults', None, 56 ('prune', None, 59 "[default; disable with --no-prune]"), 60 ('no-prune', None, 62 ('manifest-only', 'o', 64 "(implies --force-manifest)"), [all …]
|
| /external/python/cpython2/Lib/distutils/command/ |
| D | sdist.py | 24 the "--help-formats" command-line option). 41 """Callable used for the check sub-command. 51 ('use-defaults', None, 53 "[default; disable with --no-defaults]"), 54 ('no-defaults', None, 56 ('prune', None, 59 "[default; disable with --no-prune]"), 60 ('no-prune', None, 62 ('manifest-only', 'o', 64 "(implies --force-manifest)"), [all …]
|
| /external/webrtc/api/transport/ |
| D | enums.h | 4 * Use of this source code is governed by a BSD-style license 16 // See https://w3c.github.io/webrtc-pc/#rtcicetransportstate 31 NO_PRUNE, // Do not prune. 32 PRUNE_BASED_ON_PRIORITY, // Prune lower-priority ports on the same network. 33 KEEP_FIRST_READY // Keep the first ready port and prune the rest
|
| /external/elfutils/libdw/ |
| D | dwarf_getscopes.c | 48 /* Preorder visitor: prune the traversal if this DIE does not contain PC. */ 54 if (a->scopes != NULL) in pc_match() 55 die->prune = true; in pc_match() 62 int result = INTUSE(dwarf_haspc) (&die->die, a->pc); in pc_match() 71 return -1; in pc_match() 76 die->prune = true; in pc_match() 78 if (!die->prune in pc_match() 79 && INTUSE (dwarf_tag) (&die->die) == DW_TAG_inlined_subroutine) in pc_match() 80 a->inlined = depth; in pc_match() 93 if (die->die.addr != a->inlined_origin.addr) in origin_match() [all …]
|