Home
last modified time | relevance | path

Searched refs:index_patch (Results 1 – 3 of 3) sorted by relevance

/dports/science/frontistr/FrontISTR-c66bdc397de319ca59a0565b3f3b1a3b33f0c50c/hecmw1/src/visualizer/
H A Dhecmw_vis_tetra_intersect.c117 int flag_existing, index_patch, patch[4]; in find_intersection_tetra() local
149 index_patch = -1; in find_intersection_tetra()
187 index_patch++; in find_intersection_tetra()
188 patch[index_patch] = h1->ident; in find_intersection_tetra()
212 index_patch++; in find_intersection_tetra()
213 patch[index_patch] = p1->ident; in find_intersection_tetra()
253 index_patch = -1; in find_intersection_tetra()
346 index_patch++; in find_intersection_tetra()
347 patch[index_patch] = h1->ident; in find_intersection_tetra()
371 index_patch++; in find_intersection_tetra()
[all …]
H A Dhecmw_vis_connectivity_build.c400 int index_patch, patch[3]; in add_one_patch() local
407 index_patch = -1; in add_one_patch()
445 index_patch++; in add_one_patch()
446 patch[index_patch] = b_point->ident; in add_one_patch()
449 index_patch++; in add_one_patch()
471 int index_patch, patch[4]; in add_two_patch() local
478 index_patch = -1; in add_two_patch()
512 index_patch++; in add_two_patch()
513 patch[index_patch] = b_point->ident; in add_two_patch()
516 index_patch++; in add_two_patch()
[all …]
/dports/devel/git-absorb/git-absorb-0.6.6/src/
H A Dlib.rs83 'patch: for index_patch in index.iter() { in run()
84 let old_path = index_patch.new_path.as_slice(); in run()
85 if index_patch.status != git2::Delta::Modified { in run()
88 "status" => format!("{:?}", index_patch.status), in run()
97 'hunk: for index_hunk in &index_patch.hunks { in run()
225 apply_hunk_to_tree(&repo, &head_tree, &hunk_to_apply, &index_patch.old_path)?; in run()