Home
last modified time | relevance | path

Searched refs:other_idx (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/dports/net/py-netaddr/netaddr-0.8.0/netaddr/ip/
H A Dsets.py523 other_idx = 0
533 other_idx += 1
539 other_idx += 1
571 other_idx = 0
580 other_idx += 1
583 other_idx += 1
585 other_idx = _subtract(own_cur, other_nets, other_idx, result_ranges)
612 other_idx += 1
637 other_idx = 0
646 other_idx += 1
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/doc/nomicon/src/
H A Draces.md41 let other_idx = idx.clone();
43 // `move` captures other_idx by-value, moving it into this thread
47 other_idx.fetch_add(10, Ordering::SeqCst);
69 let other_idx = idx.clone();
71 // `move` captures other_idx by-value, moving it into this thread
75 other_idx.fetch_add(10, Ordering::SeqCst);
/dports/lang/gleam/gleam-0.18.2/cargo-crates/petgraph-0.6.0/src/algo/
H A Dmatching.rs422 let other_idx = graph.to_index(other_vertex); in maximum_matching() localVariable
424 if mate[other_idx].is_none() && other_vertex != start { in maximum_matching()
430 mate[other_idx] = Some(outer_vertex); in maximum_matching()
437 } else if label[other_idx].is_outer() { in maximum_matching()
455 let mate_vertex = mate[other_idx]; in maximum_matching()
467 first_inner[mate_idx] = other_idx; in maximum_matching()
/dports/devel/grex/grex-1.3.0/cargo-crates/petgraph-0.6.0/src/algo/
H A Dmatching.rs422 let other_idx = graph.to_index(other_vertex); in maximum_matching() localVariable
424 if mate[other_idx].is_none() && other_vertex != start { in maximum_matching()
430 mate[other_idx] = Some(outer_vertex); in maximum_matching()
437 } else if label[other_idx].is_outer() { in maximum_matching()
455 let mate_vertex = mate[other_idx]; in maximum_matching()
467 first_inner[mate_idx] = other_idx; in maximum_matching()
/dports/devel/texlab/texlab-3.3.0/cargo-crates/petgraph-0.6.0/src/algo/
H A Dmatching.rs422 let other_idx = graph.to_index(other_vertex); in maximum_matching() localVariable
424 if mate[other_idx].is_none() && other_vertex != start { in maximum_matching()
430 mate[other_idx] = Some(outer_vertex); in maximum_matching()
437 } else if label[other_idx].is_outer() { in maximum_matching()
455 let mate_vertex = mate[other_idx]; in maximum_matching()
467 first_inner[mate_idx] = other_idx; in maximum_matching()
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/petgraph-0.6.0/src/algo/
H A Dmatching.rs422 let other_idx = graph.to_index(other_vertex); in maximum_matching() localVariable
424 if mate[other_idx].is_none() && other_vertex != start { in maximum_matching()
430 mate[other_idx] = Some(outer_vertex); in maximum_matching()
437 } else if label[other_idx].is_outer() { in maximum_matching()
455 let mate_vertex = mate[other_idx]; in maximum_matching()
467 first_inner[mate_idx] = other_idx; in maximum_matching()
/dports/sysutils/dua-cli/dua-cli-2.14.11/cargo-crates/petgraph-0.6.0/src/algo/
H A Dmatching.rs422 let other_idx = graph.to_index(other_vertex); in maximum_matching() localVariable
424 if mate[other_idx].is_none() && other_vertex != start { in maximum_matching()
430 mate[other_idx] = Some(outer_vertex); in maximum_matching()
437 } else if label[other_idx].is_outer() { in maximum_matching()
455 let mate_vertex = mate[other_idx]; in maximum_matching()
467 first_inner[mate_idx] = other_idx; in maximum_matching()
/dports/math/GiNaC/ginac-1.8.2/ginac/
H A Dtensor.cpp400 const idx &other_idx = ex_to<idx>(other->op(i)); in replace_contr_index() local
401 if (is_dummy_pair(*self_idx, other_idx)) { in replace_contr_index()
407 ex min_dim = self_idx->minimal_dim(other_idx); in replace_contr_index()
408 *other = other->subs(other_idx == free_idx->replace_dim(min_dim)); in replace_contr_index()
515 const idx &other_idx = ex_to<idx>(other->op(i)); in contract_with() local
516 if (is_dummy_pair(*self_idx, other_idx)) { in contract_with()
521 *other = other->subs(other_idx == *free_idx); in contract_with()
/dports/sysutils/gnome-control-center/gnome-control-center-41.2/panels/search/
H A Dcc-search-panel.c165 gint idx, other_idx; in search_panel_move_selected() local
256 other_idx = GPOINTER_TO_INT (g_hash_table_lookup (self->sort_order, app_id)); in search_panel_move_selected()
257 idx = down ? (other_idx + 1) : (other_idx - 1); in search_panel_move_selected()
259 g_hash_table_replace (self->sort_order, g_strdup (other_app_id), GINT_TO_POINTER (other_idx)); in search_panel_move_selected()
/dports/devel/brz/breezy-3.2.0/breezy/bzr/
H A Dweave.py904 def _imported_parents(self, other, other_idx): argument
907 for parent_idx in other._parents[other_idx]:
912 % (parent_name, other._name_map[other_idx], self))
916 def _check_version_consistent(self, other, other_idx, name): argument
930 if self._sha1s[this_idx] != other._sha1s[other_idx]:
933 other_parents = other._parents[other_idx]
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/core/base/
H A Dcomponentuid.py160 for (self_name, self_idx), (other_name, other_idx) in zip(
164 for self_i, other_i in zip(self_idx, other_idx):
180 if len(self_idx) != len(other_idx):
181 return len(self_idx) < len(other_idx)
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/trace_event/
H A Dmemory_dump_manager_unittest.cc665 int other_idx = (mdps.front() == mdp); in TEST_F() local
669 threads[other_idx]->task_runner(); in TEST_F()
670 MockMemoryDumpProvider* other_mdp = mdps[other_idx].get(); in TEST_F()
714 int other_idx = (mdps.front() == mdp); in TEST_F() local
715 TestIOThread* other_thread = threads[other_idx].get(); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/trace_event/
H A Dmemory_dump_manager_unittest.cc665 int other_idx = (mdps.front() == mdp); in TEST_F() local
669 threads[other_idx]->task_runner(); in TEST_F()
670 MockMemoryDumpProvider* other_mdp = mdps[other_idx].get(); in TEST_F()
714 int other_idx = (mdps.front() == mdp); in TEST_F() local
715 TestIOThread* other_thread = threads[other_idx].get(); in TEST_F()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/
H A DStringUtils.cpp82 std::string::size_type other_idx = 0; in isSubsequence() local
87 char otherChar = other[other_idx]; in isSubsequence()
91 ++other_idx; in isSubsequence()
92 if (other_idx == other_n) in isSubsequence()
/dports/devel/interactive_rebase_tool/git-interactive-rebase-tool-1.2.1/cargo-crates/libgit2-sys-0.7.11/libgit2/src/
H A Dmerge.c1007 size_t other_idx; member
1204 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1207 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1214 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1217 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1275 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1278 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1296 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1299 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1421 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/libgit2-sys-0.12.26+1.3.0/libgit2/src/
H A Dmerge.c1054 size_t other_idx; member
1246 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1249 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1256 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1259 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1317 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1320 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1338 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1341 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1463 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/libgit2-sys-0.12.21+1.1.0/libgit2/src/
H A Dmerge.c1041 size_t other_idx; member
1233 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1236 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1243 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1246 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1304 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1307 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1325 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1328 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1450 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/git-absorb/git-absorb-0.6.6/cargo-crates/libgit2-sys-0.12.13+1.0.1/libgit2/src/
H A Dmerge.c1026 size_t other_idx; member
1218 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1221 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1228 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1231 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1289 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1292 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1310 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1313 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1435 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/R-cran-git2r/git2r/src/libgit2/src/
H A Dmerge.c1007 size_t other_idx; member
1204 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1207 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1214 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1217 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1275 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1278 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1296 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1299 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1421 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/git-delta/delta-0.9.2/cargo-crates/libgit2-sys-0.12.24+1.3.0/libgit2/src/
H A Dmerge.c1054 size_t other_idx; member
1246 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1249 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1256 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1259 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1317 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1320 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1338 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1341 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1463 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/libgit2-sys-0.12.7+1.0.0/libgit2/src/
H A Dmerge.c1026 size_t other_idx; member
1218 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1221 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1228 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1231 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1289 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1292 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1310 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1313 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1435 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/libgit2-sys-0.12.23+1.2.0/libgit2/src/
H A Dmerge.c1051 size_t other_idx; member
1243 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1246 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1253 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1256 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1314 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1317 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1335 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1338 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1460 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/tokei/tokei-12.1.2/cargo-crates/libgit2-sys-0.12.17+1.1.0/libgit2/src/
H A Dmerge.c1041 size_t other_idx; member
1233 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1236 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1243 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1246 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1304 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1307 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1325 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1328 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1450 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/gbump/gbump-1.0.1/cargo-crates/libgit2-sys-0.9.1/libgit2/src/
H A Dmerge.c1007 size_t other_idx; member
1196 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1199 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1206 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1209 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1267 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1270 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1288 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1291 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1413 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]
/dports/devel/libgit2/libgit2-1.3.0/src/
H A Dmerge.c1054 size_t other_idx; member
1246 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_exact()
1249 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_exact()
1256 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_exact()
1259 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_exact()
1317 similarity_ours[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1320 similarity_ours[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1338 similarity_theirs[i].other_idx = j; in merge_diff_mark_similarity_inexact()
1341 similarity_theirs[j].other_idx = i; in merge_diff_mark_similarity_inexact()
1463 ours_source_idx = similarity_ours[i].other_idx; in merge_diff_list_coalesce_renames()
[all …]

12345678910>>...12