Home
last modified time | relevance | path

Searched refs:num_matches (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format.py366 num_matches = len(matching_indices_list)
371 start_columns[batch_pos:batch_pos + num_matches] = match_start_columns
372 end_columns[batch_pos:batch_pos + num_matches] = match_end_columns
373 are_omitted[batch_pos:batch_pos + num_matches] = [
375 ] * num_matches
376 row_indices[batch_pos:batch_pos + num_matches] = [prev_r] * num_matches
378 batch_pos += num_matches
388 num_matches = len(matching_indices_list)
393 start_columns[batch_pos:batch_pos + num_matches] = match_start_columns
394 end_columns[batch_pos:batch_pos + num_matches] = match_end_columns
[all …]
/external/brotli/c/enc/
Dbackward_references_hq.c377 const int* starting_dist_cache, const size_t num_matches, in UpdateNodes() argument
472 for (j = 0; j < num_matches; ++j) { in UpdateNodes()
590 const uint32_t* num_matches, in ZopfliIterate() argument
603 num_matches[i], &matches[cur_match_pos], model, &queue, nodes); in ZopfliIterate()
605 cur_match_pos += num_matches[i]; in ZopfliIterate()
606 if (num_matches[i] == 1 && in ZopfliIterate()
618 cur_match_pos += num_matches[i]; in ZopfliIterate()
656 size_t num_matches = FindAllMatchesH10(hasher, dictionary, ringbuffer, in BrotliZopfliComputeShortestPath() local
660 if (num_matches > 0 && in BrotliZopfliComputeShortestPath()
661 BackwardMatchLength(&matches[num_matches - 1]) > max_zopfli_len) { in BrotliZopfliComputeShortestPath()
[all …]
/external/mesa3d/src/compiler/glsl/
Dir_function.cpp202 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()
278 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) { in choose_best_inexact_overload()
279 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig)) in choose_best_inexact_overload()
Dlink_varyings.cpp1306 unsigned num_matches; member in __anon0a18caf00111::varying_matches
1337 this->num_matches = 0; in varying_matches()
1428 if (this->num_matches == this->matches_capacity) { in record()
1457 this->matches[this->num_matches].packing_class in record()
1459 this->matches[this->num_matches].packing_order in record()
1463 this->matches[this->num_matches].num_components = slots * 4; in record()
1465 this->matches[this->num_matches].num_components in record()
1468 this->matches[this->num_matches].producer_var = producer_var; in record()
1469 this->matches[this->num_matches].consumer_var = consumer_var; in record()
1470 this->num_matches++; in record()
[all …]
/external/python/cpython2/Modules/
Dreadline.c72 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/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c85 int num_matches) in regex_helper() argument
99 err_code = regexec(&regex, search_str, num_matches, matches, 0); in regex_helper()
101 for (i = 0; i < num_matches; i++) { in regex_helper()
/external/python/cpython3/Modules/
Dreadline.c73 int num_matches, int max_length);
936 int num_matches, int max_length) in on_completion_display_matches_hook() argument
943 m = PyList_New(num_matches); in on_completion_display_matches_hook()
946 for (i = 0; i < num_matches; i++) { in on_completion_display_matches_hook()
/external/webrtc/webrtc/p2p/base/
Ddtlstransportchannel_unittest.cc316 int num_matches = 0; in VerifyEncryptedPacket() local
319 ++num_matches; in VerifyEncryptedPacket()
322 return (num_matches < ((static_cast<int>(size) - 5) / 10)); in VerifyEncryptedPacket()