/external/tensorflow/tensorflow/python/debug/cli/ |
D | tensor_format.py | 361 num_matches = len(matching_indices_list) 366 start_columns[batch_pos:batch_pos + num_matches] = match_start_columns 367 end_columns[batch_pos:batch_pos + num_matches] = match_end_columns 368 are_omitted[batch_pos:batch_pos + num_matches] = [ 370 ] * num_matches 371 row_indices[batch_pos:batch_pos + num_matches] = [prev_r] * num_matches 373 batch_pos += num_matches 383 num_matches = len(matching_indices_list) 388 start_columns[batch_pos:batch_pos + num_matches] = match_start_columns 389 end_columns[batch_pos:batch_pos + num_matches] = match_end_columns [all …]
|
/external/brotli/c/enc/ |
D | backward_references_hq.c | 406 const int* starting_dist_cache, const size_t num_matches, in UpdateNodes() argument 508 for (j = 0; j < num_matches; ++j) { in UpdateNodes() 619 const ZopfliCostModel* model, const uint32_t* num_matches, in ZopfliIterate() argument 633 num_matches[i], &matches[cur_match_pos], model, &queue, nodes); in ZopfliIterate() 635 cur_match_pos += num_matches[i]; in ZopfliIterate() 636 if (num_matches[i] == 1 && in ZopfliIterate() 648 cur_match_pos += num_matches[i]; in ZopfliIterate() 686 size_t num_matches; in BrotliZopfliComputeShortestPath() local 687 num_matches = FindAllMatchesH10(&hasher->privat._H10, in BrotliZopfliComputeShortestPath() 691 if (num_matches > 0 && in BrotliZopfliComputeShortestPath() [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_function.cpp | 202 int num_matches, in is_best_inexact_overload() argument 221 other < matches + num_matches; other++) { in is_best_inexact_overload() 263 int num_matches) in choose_best_inexact_overload() argument 265 if (num_matches == 0) in choose_best_inexact_overload() 268 if (num_matches == 1) in choose_best_inexact_overload() 279 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) { in choose_best_inexact_overload() 280 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig)) in choose_best_inexact_overload()
|
D | link_varyings.cpp | 1744 unsigned num_matches; member in __anone4b049550111::varying_matches 1779 this->num_matches = 0; in varying_matches() 1871 if (this->num_matches == this->matches_capacity) { in record() 1905 this->matches[this->num_matches].packing_class in record() 1907 this->matches[this->num_matches].packing_order in record() 1913 this->matches[this->num_matches].num_components = slots * 4; in record() 1915 this->matches[this->num_matches].num_components in record() 1919 this->matches[this->num_matches].producer_var = producer_var; in record() 1920 this->matches[this->num_matches].consumer_var = consumer_var; in record() 1921 this->num_matches++; in record() [all …]
|
/external/cronet/third_party/brotli/enc/ |
D | backward_references_hq.c | 419 const int* starting_dist_cache, const size_t num_matches, in UpdateNodes() argument 540 for (j = 0; j < num_matches; ++j) { in UpdateNodes() 651 const ZopfliCostModel* model, const uint32_t* num_matches, in ZopfliIterate() argument 665 num_matches[i], &matches[cur_match_pos], model, &queue, nodes); in ZopfliIterate() 667 cur_match_pos += num_matches[i]; in ZopfliIterate() 668 if (num_matches[i] == 1 && in ZopfliIterate() 680 cur_match_pos += num_matches[i]; in ZopfliIterate() 740 size_t num_matches; in BrotliZopfliComputeShortestPath() local 750 num_matches = FindAllMatchesH10(&hasher->privat._H10, in BrotliZopfliComputeShortestPath() 760 &matches[lz_matches_offset], num_matches); in BrotliZopfliComputeShortestPath() [all …]
|
/external/icing/icing/result/ |
D | snippet-retriever_benchmark.cc | 116 int num_matches = state.range(0); in BM_SnippetOneProperty() local 130 match_chance = static_cast<double>(num_matches) / total_terms; in BM_SnippetOneProperty() 132 --num_matches; in BM_SnippetOneProperty() 245 int num_matches = state.range(0); in BM_SnippetRfcOneProperty() local 259 match_chance = static_cast<double>(num_matches) / total_terms; in BM_SnippetRfcOneProperty() 261 --num_matches; in BM_SnippetRfcOneProperty()
|
/external/cronet/net/data/parse_certificate_unittest/ |
D | regenerate_pem_from_ascii.py | 70 num_matches = 0 72 num_matches += 1 75 if num_matches == 0:
|
/external/libtextclassifier/native/actions/ |
D | ngram-model.cc | 177 int num_matches = 0; in Eval() local 195 ++num_matches; in Eval() 202 const int num_misses = num_candidates - num_matches; in Eval()
|
/external/libkmsxx/kms++/src/ |
D | card.cpp | 86 uint32_t num_matches = 0; in open_device_by_driver() local 99 if (idx == num_matches) in open_device_by_driver() 101 num_matches++; in open_device_by_driver()
|
/external/cronet/testing/flake_suppressor_common/ |
D | expectations.py | 358 num_matches = 0 364 num_matches += 1 366 if num_matches != len(typ_tags):
|
/external/python/cpython2/Modules/ |
D | readline.c | 72 int num_matches, int max_length); 781 int num_matches, int max_length) in on_completion_display_matches_hook() argument 788 m = PyList_New(num_matches); in on_completion_display_matches_hook() 791 for (i = 0; i < num_matches; i++) { in on_completion_display_matches_hook()
|
/external/python/cpython3/Modules/ |
D | readline.c | 76 int num_matches, int max_length); 1049 int num_matches, int max_length) in on_completion_display_matches_hook() argument 1054 m = PyList_New(num_matches); in on_completion_display_matches_hook() 1057 for (i = 0; i < num_matches; i++) { in on_completion_display_matches_hook()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
D | rc_test_helpers.c | 85 int num_matches) in regex_helper() argument 99 err_code = regexec(®ex, search_str, num_matches, matches, 0); in regex_helper() 101 for (i = 0; i < num_matches; i++) { in regex_helper()
|
/external/cronet/base/strings/ |
D | string_util_impl_helpers.h | 353 size_t num_matches = 0; in DoReplaceMatchesAfterOffset() local 357 ++num_matches; in DoReplaceMatchesAfterOffset() 376 if (!--num_matches) in DoReplaceMatchesAfterOffset()
|
/external/webrtc/p2p/base/ |
D | dtls_transport_unittest.cc | 226 int num_matches = 0; in VerifyEncryptedPacket() local 229 ++num_matches; in VerifyEncryptedPacket() 232 return (num_matches < ((static_cast<int>(size) - 5) / 10)); in VerifyEncryptedPacket()
|
/external/cronet/testing/unexpected_passes_common/ |
D | expectations.py | 571 num_matches = 0 577 num_matches += 1 579 if num_matches != len(typ_tags):
|
/external/tensorflow/tensorflow/c/experimental/filesystem/ |
D | modular_filesystem.cc | 201 const int num_matches = ops_->get_matching_paths( in GetMatchingPaths() local 203 if (num_matches >= 0) { in GetMatchingPaths() 204 for (int i = 0; i < num_matches; i++) { in GetMatchingPaths()
|
/external/libchrome/base/strings/ |
D | string_util.cc | 783 size_t num_matches = 0; in DoReplaceMatchesAfterOffset() local 787 ++num_matches; in DoReplaceMatchesAfterOffset() 806 if (!--num_matches) in DoReplaceMatchesAfterOffset()
|
/external/mesa3d/src/gbm/backends/dri/ |
D | gbm_dri.c | 281 struct dri_extension_match *matches, size_t num_matches, in dri_bind_extensions() argument 288 for (size_t j = 0; j < num_matches; j++) { in dri_bind_extensions() 297 for (size_t j = 0; j < num_matches; j++) { in dri_bind_extensions()
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
D | mod.rs | 4609 num_matches: ::c_int, in devstat_selectdevs() 4619 num_matches: *mut ::c_int, in devstat_buildmatch()
|
/external/bcc/libbpf-tools/powerpc/ |
D | vmlinux_510.h | 95599 unsigned int num_matches; member
|
D | vmlinux.h | 95599 unsigned int num_matches; member
|
/external/bcc/libbpf-tools/arm64/ |
D | vmlinux.h | 78338 unsigned int num_matches; member
|
D | vmlinux_510.h | 78338 unsigned int num_matches; member
|