Home
last modified time | relevance | path

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

/third_party/node/deps/brotli/c/enc/
Dbackward_references_hq.c406 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 …]
/third_party/skia/third_party/externals/brotli/c/enc/
Dbackward_references_hq.c406 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 …]
/third_party/mesa3d/src/compiler/glsl/
Dir_function.cpp203 int num_matches, in is_best_inexact_overload() argument
222 other < matches + num_matches; other++) { in is_best_inexact_overload()
264 int num_matches) in choose_best_inexact_overload() argument
266 if (num_matches == 0) in choose_best_inexact_overload()
269 if (num_matches == 1) in choose_best_inexact_overload()
280 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) { in choose_best_inexact_overload()
281 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig)) in choose_best_inexact_overload()
Dgl_nir_link_varyings.c1031 unsigned num_matches; member
1169 vm->num_matches = 0; in init_varying_matches()
1345 if (vm->num_matches == vm->matches_capacity) { in varying_matches_record()
1375 vm->matches[vm->num_matches].packing_class in varying_matches_record()
1377 vm->matches[vm->num_matches].packing_order in varying_matches_record()
1380 vm->matches[vm->num_matches].producer_var = producer_var; in varying_matches_record()
1381 vm->matches[vm->num_matches].consumer_var = consumer_var; in varying_matches_record()
1382 vm->num_matches++; in varying_matches_record()
1415 qsort(vm->matches, vm->num_matches, sizeof(*vm->matches), in varying_matches_assign_locations()
1419 qsort(vm->matches, vm->num_matches, sizeof(*vm->matches), in varying_matches_assign_locations()
[all …]
/third_party/node/deps/v8/src/regexp/experimental/
Dexperimental.cc237 int num_matches = in Exec() local
241 if (num_matches > 0) { in Exec()
242 DCHECK_EQ(num_matches, 1); in Exec()
250 } else if (num_matches == 0) { in Exec()
253 DCHECK_LT(num_matches, 0); in Exec()
302 int num_matches = OneshotExecRaw(isolate, regexp, subject, output_registers, in OneshotExec() local
305 if (num_matches > 0) { in OneshotExec()
306 DCHECK_EQ(num_matches, 1); in OneshotExec()
314 } else if (num_matches == 0) { in OneshotExec()
317 DCHECK_LT(num_matches, 0); in OneshotExec()
/third_party/glfw/deps/
Dgetopt.c162 int num_matches = 0; in getopt_long() local
182 ++num_matches; in getopt_long()
186 if (num_matches == 1) { in getopt_long()
/third_party/python/Modules/
Dreadline.c76 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()
/third_party/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()
/third_party/gn/src/base/strings/
Dstring_util.cc712 size_t num_matches = 0; in DoReplaceMatchesAfterOffset() local
716 ++num_matches; in DoReplaceMatchesAfterOffset()
735 if (!--num_matches) in DoReplaceMatchesAfterOffset()
/third_party/ffmpeg/libavfilter/
Dvf_deshake_opencl.c128 int num_matches; member
1569 if (deshake_ctx->debug_on && !deshake_ctx->is_yuv && debug_matches.num_matches > 0) { in filter_frame()
1573 debug_matches.num_matches * sizeof(MotionVector), in filter_frame()
1606 (size_t[]){ debug_matches.num_matches }, in filter_frame()
2012 debug_matches.num_matches = num_vectors; in queue_frame()
/third_party/mesa3d/src/gbm/backends/dri/
Dgbm_dri.c315 struct dri_extension_match *matches, size_t num_matches, in dri_bind_extensions() argument
322 for (size_t j = 0; j < num_matches; j++) { in dri_bind_extensions()
331 for (size_t j = 0; j < num_matches; j++) { in dri_bind_extensions()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
Dmod.rs4609 num_matches: ::c_int, in devstat_selectdevs()
4619 num_matches: *mut ::c_int, in devstat_buildmatch()