| /external/rust/crates/itertools/src/adaptors/ |
| D | coalesce.rs | 115 /// See [`.dedup_by()`](crate::Itertools::dedup_by) or [`.dedup()`](crate::Itertools::dedup) for mo… 172 /// See [`.dedup()`](crate::Itertools::dedup) for more information. 173 pub type Dedup<I> = DedupBy<I, DedupEq>; typedef 175 /// Create a new `Dedup`. 176 pub fn dedup<I>(iter: I) -> Dedup<I> in dedup() function
|
| /external/e2fsprogs/contrib/android/ |
| D | basefs_allocator.c | 93 * so it will appear in neither the exclusive or dedup set. If a block is used 95 * to the dedup set. 97 * The dedup set is not removed from fs->block_map. This allows us to re-use 98 * dedup blocks separately and not have them be allocated outside of file data. 127 * pool or the dedup pool as appropriate. We stop once the file has enough 218 retval = ext2fs_allocate_block_bitmap(fs, "dedup map", in base_fs_alloc_load() 327 /* Try to steal a block from the dedup pool. */ in basefs_block_allocator()
|
| /external/cronet/third_party/brotli/enc/ |
| D | encoder_dict.c | 223 BrotliTrie dedup; in BuildDictionaryLut() local 230 BrotliTrieInit(&dedup); in BuildDictionaryLut() 260 if (!BrotliTrieAdd(m, 0, idx, word, word_size, &dedup)) { in BuildDictionaryLut() 293 it = BrotliTrieFind(&dedup, word, word_size); in BuildDictionaryLut() 296 if (!BrotliTrieAdd(m, 0, ix, word, word_size, &dedup)) { in BuildDictionaryLut() 311 it = BrotliTrieFind(&dedup, word, word_size); in BuildDictionaryLut() 314 if (!BrotliTrieAdd(m, 0, ix, word, word_size, &dedup)) { in BuildDictionaryLut() 359 BrotliTrieFree(m, &dedup); in BuildDictionaryLut()
|
| /external/tensorflow/tensorflow/core/grappler/optimizers/ |
| D | common_subgraph_elimination.h | 55 // Returns true if it is safe to dedup node from the graph. 58 // Dedup redundant nodes in the graph.
|
| D | arithmetic_optimizer.h | 101 // Returns true if it is safe to dedup node from the graph. 104 // Dedup redundant nodes in the graph.
|
| /external/jazzer-api/src/main/java/com/code_intelligence/jazzer/driver/ |
| D | Opt.java | 148 // runner, but still support hooks = false && dedup = true. 149 public static final boolean dedup = field in Opt 150 boolSetting("dedup", hooks, "Compute and print a deduplication token for every finding"); 211 if ((!ignore.isEmpty() || keepGoing > 1) && !dedup) {
|
| D | FuzzTargetRunner.java | 230 long dedupToken = Opt.dedup ? ExceptionUtils.computeDedupToken(finding) : 0; in runOne() 231 if (Opt.dedup && !ignoredTokens.add(dedupToken)) { in runOne() 251 if (Opt.dedup) { in runOne() 270 if (!Opt.dedup || Long.compareUnsigned(ignoredTokens.size(), Opt.keepGoing) >= 0) { in runOne() 273 if (!Opt.autofuzz.isEmpty() && Opt.dedup) { in runOne()
|
| /external/python/cpython3/Lib/test/ |
| D | test_compileall.py | 918 for dedup in (True, False): 920 with self.subTest(dedup=dedup): 925 if dedup: 929 self.assertEqual(is_hardlink(pycs[0], pycs[1]), dedup) 930 self.assertEqual(is_hardlink(pycs[1], pycs[2]), dedup) 931 self.assertEqual(is_hardlink(pycs[0], pycs[2]), dedup) 966 def compile_dir(self, *, dedup=True, optimize=(0, 1, 2), force=False): argument 968 hardlink_dupes=dedup, force=force) 1006 self.compile_dir(dedup=False)
|
| D | test_code.py | 599 def dedup(lst, prev=object()): function 606 return dedup(l for (l, _, _, _) in positions) 664 lines1 = list(dedup(l for (_, _, l) in co.co_lines()))
|
| /external/rust/crates/quiche/deps/boringssl/src/crypto/pool/ |
| D | pool_test.cc | 61 EXPECT_EQ(buf.get(), buf2.get()) << "CRYPTO_BUFFER_POOL did not dedup data."; in TEST() 88 EXPECT_EQ(buf.get(), buf2.get()) << "CRYPTO_BUFFER_POOL did not dedup data."; in TEST()
|
| /external/tensorflow/tensorflow/core/grappler/ |
| D | graph_topology_view.cc | 131 // Dedup the input list while it's still hot in cache. in InitializeFromGraph() 135 // Dedup outputs for all the graph nodes. in InitializeFromGraph()
|
| /external/cronet/third_party/protobuf/.github/workflows/ |
| D | codespell.yml | 16 …ignore_words_list: "alow,alse,ba,cleare,copyable,cloneable,dedup,dur,errorprone,falsy,files',fo,fu…
|
| /external/protobuf/.github/workflows/ |
| D | codespell.yml | 16 …ignore_words_list: "alow,alse,ba,cleare,copyable,cloneable,dedup,dur,errorprone,falsy,files',fo,fu…
|
| /external/rust/crates/itertools/tests/ |
| D | quick.rs | 451 let filt = a.clone().dedup(); 514 let filt = a.clone().dedup(); 524 let filt = a.clone().dedup(); 600 let filt = a.clone().dedup(); 601 let filt2 = b.clone().dedup(); 756 b.dedup(); 779 b.dedup(); 780 itertools::equal(&b, a.iter().dedup()) 794 correct_size_hint(a.iter().dedup()) 844 let (mut t1, mut t2) = a.iter().dedup().tee(); [all …]
|
| /external/rust/crates/itertools/ |
| D | CHANGELOG.md | 128 …ge_by) adaptors that work like [`.dedup()`](https://docs.rs/itertools/0.8.1/itertools/trait.Iterto… 317 - `.merge()`, `.unique()` and `.dedup()` now perform better due to not using function pointers 323 - Return type of `.dedup()` changed
|
| /external/cronet/third_party/boringssl/src/crypto/pool/ |
| D | pool_test.cc | 82 EXPECT_EQ(buf.get(), buf2.get()) << "CRYPTO_BUFFER_POOL did not dedup data."; in TEST() 152 EXPECT_EQ(buf.get(), buf2.get()) << "CRYPTO_BUFFER_POOL did not dedup data."; in TEST()
|
| /external/boringssl/src/crypto/pool/ |
| D | pool_test.cc | 82 EXPECT_EQ(buf.get(), buf2.get()) << "CRYPTO_BUFFER_POOL did not dedup data."; in TEST() 152 EXPECT_EQ(buf.get(), buf2.get()) << "CRYPTO_BUFFER_POOL did not dedup data."; in TEST()
|
| /external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/populator/ |
| D | ManifestFileGroupPopulator.java | 155 public Builder setDedupDownloadWithEtag(boolean dedup) { in setDedupDownloadWithEtag() argument 156 this.dedupDownloadWithEtag = dedup; in setDedupDownloadWithEtag() 614 "%s: Not relying on etag to dedup manifest -- checking if manifest should be force" 643 "%s: Not relying on etag to dedup manifest, so the downloaded manifest is"
|
| /external/tensorflow/tensorflow/core/profiler/convert/ |
| D | xplane_to_op_stats.h | 42 // Propagate and dedup the diagnostics in XSpace and add to OpStats.
|
| /external/mesa3d/src/imagination/vulkan/ |
| D | pvr_spm.c | 562 /* TODO: See if we can dedup this with 638 * regs we can instead do this in a loop and dedup some stuff. in pvr_spm_init_eot_state() 835 /* FIXME: Can we dedup this with pvr_load_op_pds_data_create_and_upload() ? */ 1038 /* TODO: Is it worth to dedup this with pvr_pds_bgnd_pack_state() ? */ in pvr_spm_init_bgobj_state()
|
| /external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
| D | tf_savedmodel_passes.td | 64 def DedupBoundInputBindingPass : Pass<"tf-saved-model-dedup-bound-input-binding-pass", "mlir::func:…
|
| /external/tensorflow/tensorflow/core/grappler/utils/ |
| D | canonicalizer.cc | 41 // Sort and dedup control inputs. in CanonicalizeNode()
|
| /external/cronet/components/metrics/call_stacks/ |
| D | call_stack_profile_builder.cc | 172 // Dedup modules. in OnSampleCompleted() 204 // Dedup Stacks. in OnSampleCompleted()
|
| /external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/ |
| D | tf_saved_model_deduplicate_bound_input_bindings.mlir | 1 // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-saved-model-dedup-bound-input-binding-p…
|
| /external/crosvm/tools/infra/ |
| D | binary_size | 73 # output path can contain duplicated target names, dedup before printing
|