Home
last modified time | relevance | path

Searched refs:start_from (Results 1 – 25 of 381) sorted by relevance

12345678910>>...16

/dports/math/igraph/igraph-0.9.5/src/games/
H A Dbarabasi.c82 start_nodes = start_from ? igraph_vcount(start_from) : 1; in igraph_i_barabasi_game_bag()
83 start_edges = start_from ? igraph_ecount(start_from) : 0; in igraph_i_barabasi_game_bag()
106 if (start_from) { in igraph_i_barabasi_game_bag()
128 if (start_from) { in igraph_i_barabasi_game_bag()
137 for (i = (start_from ? start_nodes : 1), k = (start_from ? 0 : 1); in igraph_i_barabasi_game_bag()
195 start_nodes = start_from ? igraph_vcount(start_from) : 1; in igraph_i_barabasi_game_psumtree_multiple()
196 start_edges = start_from ? igraph_ecount(start_from) : 0; in igraph_i_barabasi_game_psumtree_multiple()
237 for (i = (start_from ? start_nodes : 1), k = (start_from ? 0 : 1); in igraph_i_barabasi_game_psumtree_multiple()
302 start_nodes = start_from ? igraph_vcount(start_from) : 1; in igraph_i_barabasi_game_psumtree()
303 start_edges = start_from ? igraph_ecount(start_from) : 0; in igraph_i_barabasi_game_psumtree()
[all …]
/dports/net/openmpi3/openmpi-3.1.6/ompi/datatype/
H A Dompi_datatype_create_struct.c37 int i, start_from; in ompi_datatype_create_struct() local
47 start_from = i; in ompi_datatype_create_struct()
48 lastType = (ompi_datatype_t*)pTypes[start_from]; in ompi_datatype_create_struct()
49 lastBlock = pBlockLength[start_from]; in ompi_datatype_create_struct()
51 lastDisp = pDisp[start_from]; in ompi_datatype_create_struct()
52 endto = pDisp[start_from] + lastExtent * lastBlock; in ompi_datatype_create_struct()
54 for( i = (start_from + 1); i < count; i++ ) { in ompi_datatype_create_struct()
71 lastType = (ompi_datatype_t*)pTypes[start_from]; in ompi_datatype_create_struct()
72 lastBlock = pBlockLength[start_from]; in ompi_datatype_create_struct()
74 lastDisp = pDisp[start_from]; in ompi_datatype_create_struct()
[all …]
/dports/net/openmpi/openmpi-4.1.1/ompi/datatype/
H A Dompi_datatype_create_struct.c37 int i, start_from; in ompi_datatype_create_struct() local
47 start_from = i; in ompi_datatype_create_struct()
48 lastType = (ompi_datatype_t*)pTypes[start_from]; in ompi_datatype_create_struct()
49 lastBlock = pBlockLength[start_from]; in ompi_datatype_create_struct()
51 lastDisp = pDisp[start_from]; in ompi_datatype_create_struct()
52 endto = pDisp[start_from] + lastExtent * lastBlock; in ompi_datatype_create_struct()
54 for( i = (start_from + 1); i < count; i++ ) { in ompi_datatype_create_struct()
71 lastType = (ompi_datatype_t*)pTypes[start_from]; in ompi_datatype_create_struct()
72 lastBlock = pBlockLength[start_from]; in ompi_datatype_create_struct()
74 lastDisp = pDisp[start_from]; in ompi_datatype_create_struct()
[all …]
/dports/net/kea/kea-2.0.1/src/lib/util/
H A Dstrutil.cc370 const char* start_from = orig_data; in scrub()
373 while (start_from < dead_end) { in scrub()
376 const char* end_at = start_from + strlen(start_from); in scrub()
378 while (start_from < end_at) { in scrub()
382 result << start_from; in scrub()
383 start_from = end_at + 1; in scrub()
395 result << *start_from; in scrub()
396 ++start_from; in scrub()
403 ++start_from; in scrub()
407 if (start_from < dead_end) { in scrub()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/runtime/
H A Druntime-array.cc262 int start_from = Smi::ToInt(*from_index); in RUNTIME_FUNCTION() local
263 if (start_from < 0) { in RUNTIME_FUNCTION()
266 index = start_from; in RUNTIME_FUNCTION()
270 double start_from = from_index->Number(); in RUNTIME_FUNCTION() local
273 if (start_from < 0) { in RUNTIME_FUNCTION()
276 index = start_from; in RUNTIME_FUNCTION()
357 int64_t start_from; in RUNTIME_FUNCTION() local
366 start_from = static_cast<int64_t>(fp); in RUNTIME_FUNCTION()
373 if (start_from >= 0) { in RUNTIME_FUNCTION()
374 index = start_from; in RUNTIME_FUNCTION()
[all …]
/dports/net/fspd/fsp-2.8.1b29/clients/
H A Dfgetcmd.c40 static unsigned long start_from; variable
67 start_from = 0; in get_file()
101 start_from = statbuf.st_size; in get_file()
102 if(start_from != 0) in get_file()
104 start_from = 0;} in get_file()
105 } else start_from = 0; in get_file()
106 } else start_from = 0; in get_file()
108 if(start_from == 0) { in get_file()
122 (path,fp, start_from) == -1) in get_file()
/dports/databases/pg_citus/citus-10.2.3/src/backend/distributed/sql/udfs/create_time_partitions/
H A D10.2-1.sql5 start_from timestamptz DEFAULT now())
20 IF start_from >= end_at THEN
21 RAISE 'start_from (%) must be older than end_at (%)', start_from, end_at;
33 FROM get_missing_time_partition_ranges(table_name, partition_interval, end_at, start_from)
53 start_from timestamptz)
H A Dlatest.sql5 start_from timestamptz DEFAULT now())
20 IF start_from >= end_at THEN
21 RAISE 'start_from (%) must be older than end_at (%)', start_from, end_at;
33 FROM get_missing_time_partition_ranges(table_name, partition_interval, end_at, start_from)
53 start_from timestamptz)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/runtime/
H A Druntime-array.cc267 int start_from = Smi::ToInt(*from_index); in RUNTIME_FUNCTION() local
268 if (start_from < 0) { in RUNTIME_FUNCTION()
271 index = start_from; in RUNTIME_FUNCTION()
275 double start_from = from_index->Number(); in RUNTIME_FUNCTION() local
278 if (start_from < 0) { in RUNTIME_FUNCTION()
281 index = start_from; in RUNTIME_FUNCTION()
362 int64_t start_from; in RUNTIME_FUNCTION() local
371 start_from = static_cast<int64_t>(fp); in RUNTIME_FUNCTION()
378 if (start_from >= 0) { in RUNTIME_FUNCTION()
379 index = start_from; in RUNTIME_FUNCTION()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/runtime/
H A Druntime-array.cc274 int start_from = Smi::ToInt(*from_index); in RUNTIME_FUNCTION() local
275 if (start_from < 0) { in RUNTIME_FUNCTION()
278 index = start_from; in RUNTIME_FUNCTION()
282 double start_from = from_index->Number(); in RUNTIME_FUNCTION() local
285 if (start_from < 0) { in RUNTIME_FUNCTION()
288 index = start_from; in RUNTIME_FUNCTION()
369 int64_t start_from; in RUNTIME_FUNCTION() local
378 start_from = static_cast<int64_t>(fp); in RUNTIME_FUNCTION()
385 if (start_from >= 0) { in RUNTIME_FUNCTION()
386 index = start_from; in RUNTIME_FUNCTION()
[all …]
/dports/misc/veles/veles-2018.05.0/python/veles/tests/proto/
H A Dtest_pos_filter.py34 (PosFilter(start_from=9), [1, 3, 4, 5, 6, 7, 8, 9]),
35 (PosFilter(start_from=10), [1, 3, 4, 5, 6, 7, 8, 9]),
36 (PosFilter(start_from=11), [1, 3, 5, 6, 8, 9]),
37 (PosFilter(start_from=20), [3, 5, 6, 8, 9]),
40 (PosFilter(start_from=15, start_to=25), [1, 5, 8, 9]),
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/codegen/meta/src/
H A Dunique_table.rs66 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
67 while start_from != 0 { in add()
69 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
72 start_from -= 1; in add()
76 .extend(values[start_from..values.len()].iter().cloned()); in add()
77 table_len - start_from in add()
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/cranelift-codegen-meta-0.44.0/src/
H A Dunique_table.rs65 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
66 while start_from != 0 { in add()
68 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
71 start_from -= 1; in add()
75 .extend(values[start_from..values.len()].iter().cloned()); in add()
76 table_len - start_from in add()
/dports/www/firefox/firefox-99.0/third_party/rust/cranelift-codegen-meta/src/
H A Dunique_table.rs66 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
67 while start_from != 0 { in add()
69 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
72 start_from -= 1; in add()
76 .extend(values[start_from..values.len()].iter().cloned()); in add()
77 table_len - start_from in add()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/cranelift-codegen-meta/src/
H A Dunique_table.rs66 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
67 while start_from != 0 { in add()
69 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
72 start_from -= 1; in add()
76 .extend(values[start_from..values.len()].iter().cloned()); in add()
77 table_len - start_from in add()
/dports/lang/rust/rustc-1.58.1-src/vendor/cranelift-codegen-meta/src/
H A Dunique_table.rs66 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
67 while start_from != 0 { in add()
69 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
72 start_from -= 1; in add()
76 .extend(values[start_from..values.len()].iter().cloned()); in add()
77 table_len - start_from in add()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/cranelift-codegen-meta/src/
H A Dunique_table.rs66 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
67 while start_from != 0 { in add()
69 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
72 start_from -= 1; in add()
76 .extend(values[start_from..values.len()].iter().cloned()); in add()
77 table_len - start_from in add()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/cranelift-codegen-meta/src/
H A Dunique_table.rs66 let mut start_from = usize::min(table_len, values.len() - 1); in add() localVariable
67 while start_from != 0 { in add()
69 if values[0..start_from] == self.table[table_len - start_from..table_len] { in add()
72 start_from -= 1; in add()
76 .extend(values[start_from..values.len()].iter().cloned()); in add()
77 table_len - start_from in add()
/dports/textproc/p5-XML-Parser-Lite/XML-Parser-Lite-0.722/t/
H A DLite.t11 my @start_from = ();
19 @start_from = ();
26 Start => sub { push @start_from, $_[1]; },
70 is $start_from[0], 'foo', 'start callback';
76 is $start_from[0], 'baz', 'start callback';
77 is $start_from[1], 'foo', 'start callback';
78 is $start_from[2], 'foo', 'start callback';
/dports/devel/py-urwid/urwid-2.1.2/examples/
H A Dfib.py52 def get_next(self, start_from): argument
53 a, b = start_from
57 def get_prev(self, start_from): argument
58 a, b = start_from
/dports/deskutils/calcurse/calcurse-4.7.1/src/
H A Dargs.c670 EXIT_IF(start_from, in parse_args()
673 EXIT_IF(filter.start_from == -1, in parse_args()
675 start_from = 1; in parse_args()
690 EXIT_IF(start_from, in parse_args()
693 EXIT_IF(filter.start_from == -1, in parse_args()
696 filter.start_from = NEXTDAY(filter.start_from); in parse_args()
698 filter.start_from++; in parse_args()
699 start_from = 1; in parse_args()
713 EXIT_IF(start_from, in parse_args()
718 filter.start_from = filter.start_to = -1; in parse_args()
[all …]
/dports/mail/py-alot/alot-0.9/alot/
H A Dwalker.py45 def get_next(self, start_from): argument
46 return self._get_at_pos(start_from + self.direction)
48 def get_prev(self, start_from): argument
49 return self._get_at_pos(start_from - self.direction)
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/toolbar/
H A Dback_forward_menu_model.cc323 int BackForwardMenuModel::GetIndexOfNextChapterStop(int start_from, in GetIndexOfNextChapterStop() argument
325 if (start_from < 0) in GetIndexOfNextChapterStop()
331 start_from++; in GetIndexOfNextChapterStop()
335 if (start_from >= max_count) in GetIndexOfNextChapterStop()
338 NavigationEntry* start_entry = controller.GetEntryAtIndex(start_from); in GetIndexOfNextChapterStop()
350 for (int i = start_from + 1; i < max_count; ++i) { in GetIndexOfNextChapterStop()
360 for (int i = start_from - 1; i >= 0; --i) { in GetIndexOfNextChapterStop()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/g1/
H A Dg1ConcurrentMarkObjArrayProcessor.cpp33 size_t G1CMObjArrayProcessor::process_array_slice(objArrayOop obj, HeapWord* start_from, size_t rem… in process_array_slice() argument
37 push_array_slice(start_from + ObjArrayMarkingStride); in process_array_slice()
41 MemRegion mr(start_from, words_to_scan); in process_array_slice()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/gc/g1/
H A Dg1ConcurrentMarkObjArrayProcessor.cpp33 size_t G1CMObjArrayProcessor::process_array_slice(objArrayOop obj, HeapWord* start_from, size_t rem… in process_array_slice() argument
37 push_array_slice(start_from + ObjArrayMarkingStride); in process_array_slice()
41 MemRegion mr(start_from, words_to_scan); in process_array_slice()

12345678910>>...16