Home
last modified time | relevance | path

Searched refs:new_patches (Results 1 – 7 of 7) sorted by relevance

/dports/devel/tla/tla-1.3.5/src/tla/libarch/
H A Dmerge-points.c191 rel_table new_patches = rel_table_nil; in arch_add_merge_points() local
197 new_patches = rel_ws_split (new_patches_header); in arch_add_merge_points()
198 arch_sort_table_by_name_field (0, new_patches, 0); in arch_add_merge_points()
199 rel_uniq_by_field (&new_patches, 0); in arch_add_merge_points()
201 for (x = 0; x < rel_n_records (new_patches); ++x) in arch_add_merge_points()
203 if (!str_cmp_prefix (prefix, rel_peek_str (new_patches, x, 0))) in arch_add_merge_points()
204 …, rel_make_record_2_taking (rel_make_field_str (level), rel_get_field (new_patches, x, 0)), rel_re… in arch_add_merge_points()
208 rel_free_table (new_patches); in arch_add_merge_points()
H A Dmissing.c77 rel_table new_patches = rel_table_nil; in is_a_patch_present() local
84 new_patches = rel_ws_split (new_patches_header); in is_a_patch_present()
85 rel_sort_table_by_field (0, new_patches, 0); in is_a_patch_present()
86 rel_uniq_by_field (&new_patches, 0); in is_a_patch_present()
88 result = rel_join (-1, rel_join_output(1,0,2,0,-1), 0, 0, has, new_patches); in is_a_patch_present()
93 rel_free_table (new_patches); in is_a_patch_present()
H A Dpatch-logs.c915 rel_table new_patches = rel_table_nil; in arch_print_headers_summary() local
925 new_patches = rel_ws_split (raw_merges); in arch_print_headers_summary()
926 arch_sort_table_by_name_field (0, new_patches, 0); in arch_print_headers_summary()
928 for (x = 0; x < rel_n_records (new_patches); ++x) in arch_print_headers_summary()
930 …if (arch_valid_package_name (rel_peek_str (new_patches, x, 0), arch_req_archive, arch_req_patch_le… in arch_print_headers_summary()
931 && str_cmp (rel_peek_str (new_patches, x, 0), this_fqrevision)) in arch_print_headers_summary()
935 … patch_archive = arch_parse_package_name (arch_ret_archive, 0, rel_peek_str (new_patches, x, 0)); in arch_print_headers_summary()
949 … safe_printfmt (out_fd, "%*s%s\n", indent_level + 2, "", rel_peek_str (new_patches, x, 0)); in arch_print_headers_summary()
960 rel_free_table (new_patches); in arch_print_headers_summary()
H A Dcommit.c411 rel_table new_patches = rel_table_nil; in arch_prepare_commit_changeset() local
434 new_patches = pick_patch_logs (csr.added_files); in arch_prepare_commit_changeset()
445 arch_print_log_list_header (log_fd, "New-patches", new_patches, 0); in arch_prepare_commit_changeset()
453 rel_free_table (new_patches); in arch_prepare_commit_changeset()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/numerics/
H A Ddata_out_rotation.cc87 const std::vector<DataOutBase::Patch<dim + 1, spacedim + 1>> &new_patches, in append_patch_to_list()
90 for (unsigned int i = 0; i < new_patches.size(); ++i) in append_patch_to_list()
92 patches.push_back(new_patches[i]); in append_patch_to_list()
525 new_patches(n_patches_per_circle); in build_patches() local
526 for (unsigned int i = 0; i < new_patches.size(); ++i) in build_patches()
528 new_patches[i].n_subdivisions = n_subdivisions; in build_patches()
529 new_patches[i].data.reinit( in build_patches()
544 &new_patches) { in build_patches() argument
546 append_patch_to_list<dimension, space_dimension>(new_patches, in build_patches()
550 new_patches); in build_patches()
/dports/devel/brz/breezy-3.2.0/breezy/plugins/quilt/
H A Dmerge.py100 new_patches = quilt.series()
104 for p in new_patches:
116 for p in new_patches:
/dports/graphics/py-mpl-interactions/mpl_interactions-0.19.0/mpl_interactions/
H A Dpyplot.py281 new_patches = []
283 new_patches.append(Rectangle((bins[i], 0), width=width, height=heights[i]))
287 return xlims, ylims, new_patches
395 new_x, new_y, new_patches = simple_hist(arr_, density=density, bins=bins, weights=weights)
397 pc.set_paths(new_patches)
402 new_x, new_y, new_patches = simple_hist(
406 pc.set_paths(new_patches)