Home
last modified time | relevance | path

Searched refs:start_node_id (Results 1 – 25 of 44) sorted by relevance

12

/dports/misc/libpostal/libpostal-1.1-alpha/src/
H A Dtrie_search.c20 uint32_t node_id = start_node_id; in trie_search_from_index()
85 node_id = start_node_id; in trie_search_from_index()
243 uint32_t node_id = start_node_id, last_node_id = start_node_id; in trie_search_tokens_from_index()
307 node_id = start_node_id; in trie_search_tokens_from_index()
320 node_id = start_node_id; in trie_search_tokens_from_index()
347 node_id = last_node_id = start_node_id; in trie_search_tokens_from_index()
362 node_id = last_node_id = start_node_id; in trie_search_tokens_from_index()
370 node_id = last_node_id = start_node_id; in trie_search_tokens_from_index()
477 uint32_t last_node_id = start_node_id; in trie_search_suffixes_from_index()
598 if (node.check != start_node_id) { in trie_search_suffixes_from_index_get_suffix_char()
[all …]
H A Dtrie_search.h32 bool trie_search_from_index(trie_t *self, char *text, uint32_t start_node_id, phrase_array **phrase…
35 …ens_from_index(trie_t *self, char *str, token_array *tokens, uint32_t start_node_id, phrase_array …
37 …se_t trie_search_suffixes_from_index(trie_t *self, char *word, size_t len, uint32_t start_node_id);
38 …_suffixes_from_index_get_suffix_char(trie_t *self, char *word, size_t len, uint32_t start_node_id);
40 …se_t trie_search_prefixes_from_index(trie_t *self, char *word, size_t len, uint32_t start_node_id);
41 …_prefixes_from_index_get_prefix_char(trie_t *self, char *word, size_t len, uint32_t start_node_id);
H A Dtrie.c674 bool trie_add_prefix_at_index(trie_t *self, char *key, uint32_t start_node_id, uint32_t data) { in trie_add_prefix_at_index() argument
676 if (start_node_id == NULL_NODE_ID || len == 0) return false; in trie_add_prefix_at_index()
678 trie_node_t start_node = trie_get_node(self, start_node_id); in trie_add_prefix_at_index()
684 if (node.check != start_node_id) { in trie_add_prefix_at_index()
685 node_id = trie_add_transition(self, start_node_id, prefix_char); in trie_add_prefix_at_index()
697 bool trie_add_suffix_at_index(trie_t *self, char *key, uint32_t start_node_id, uint32_t data) { in trie_add_suffix_at_index() argument
699 if (start_node_id == NULL_NODE_ID || len == 0) return false; in trie_add_suffix_at_index()
701 trie_node_t start_node = trie_get_node(self, start_node_id); in trie_add_suffix_at_index()
707 if (node.check != start_node_id) { in trie_add_suffix_at_index()
708 node_id = trie_add_transition(self, start_node_id, suffix_char); in trie_add_suffix_at_index()
H A Dtrie.h119 bool trie_add_suffix_at_index(trie_t *self, char *key, uint32_t start_node_id, uint32_t data);
121 bool trie_add_prefix_at_index(trie_t *self, char *key, uint32_t start_node_id, uint32_t data);
/dports/databases/pgrouting/pgrouting-3.2.0/tools/testers/
H A DpickDeliver_pgtap_data.sql10 start_node_id BIGINT, field
18 INSERT INTO vehicles (id, start_node_id, start_x, start_y, start_open, start_close, capacity)
H A Dsampledata.sql146 start_node_id BIGINT, field
156 (start_node_id, start_x, start_y, start_open, start_close, number, capacity) VALUES
/dports/misc/libpostal/libpostal-1.1-alpha/scripts/geodata/osm/
H A Dadmin_boundaries.py117 start_node_id = self.way_deps[self.way_indptr[way_index]]
120 start_end_nodes[way_id] = (start_node_id, end_node_id)
122 if start_node_id == end_node_id:
127 end_nodes[start_node_id].append(way_id)
/dports/databases/pgrouting/pgrouting-3.2.0/docqueries/pickDeliver/
H A Ddoc-pickDeliver.result18 SELECT start_node_id, start_x, start_y FROM vehicles
48 SELECT start_node_id FROM vehicles) a))
H A Dpast_example.result14 start_node_id BIGINT,
115 UPDATE vehicles SET start_node_id = max + 1 FROM the_max;
H A Ddoc-pickDeliver.test.sql30 SELECT start_node_id FROM vehicles) a))
/dports/databases/pgrouting/pgrouting-3.2.0/src/pickDeliver/
H A Dfleet.cpp177 vehicles[0].start_node_id, in build_fleet()
208 if (!problem->get_cost_matrix().has_id(vehicle.start_node_id)) { in build_fleet()
209 … throw std::make_pair(std::string("Unable to find node on matrix"), vehicle.start_node_id); in build_fleet()
H A DpickDeliver_driver.cpp97 auto depot_node = vehicles[0].start_node_id; in do_pgr_pickDeliver()
107 if (v.start_node_id != depot_node && v.end_node_id != depot_node) { in do_pgr_pickDeliver()
H A DpickDeliverEuclidean_driver.cpp93 matrix_data[std::pair<double, double>(v.start_x, v.start_y)] = v.start_node_id; in do_pgr_pickDeliverEuclidean()
114 v.start_node_id = matrix_data[std::pair<double, double>(v.start_x, v.start_y)]; in do_pgr_pickDeliverEuclidean()
H A Dtw_node.cpp175 Dnode(id, data.start_node_id), in Tw_node()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/android/dependency_analysis/
H A Dcount_cycles.py59 start_node_id = node_to_id[start_node]
66 if node_to_id[end] < start_node_id:
/dports/databases/pgrouting/pgrouting-3.2.0/include/c_types/pickDeliver/
H A Dvehicle_t.h47 int64_t start_node_id; member
/dports/databases/pgrouting/pgrouting-3.2.0/pgtap/pickDeliver/pickDeliver/
H A Dmany-calls.sql17 SELECT start_node_id FROM vehicles) a))
/dports/databases/pgrouting/pgrouting-3.2.0/src/common/
H A Dvehicles_input.c122 vehicle->start_node_id = with_id ? in fetch_vehicles()
128 vehicle->start_node_id) : in fetch_vehicles()
/dports/databases/pgrouting/pgrouting-3.2.0/sql/vrp_basic/
H A D_pgr_vrpOneDepot.sql82 …SELECT id AS start_node_id, x AS start_x, y AS start_y, open_time AS start_open, close_time AS sta…
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/
H A DWriteUtil.hpp57 const int start_node_id,
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/moab/
H A DWriteUtilIface.hpp60 const int start_node_id,
/dports/finance/electrum/Electrum-4.1.5/electrum/
H A Dchannel_db.py661 … def add_channel_update_for_private_channel(self, msg_payload: dict, start_node_id: bytes) -> bool:
665 if not verify_sig_for_channel_update(msg_payload, start_node_id):
668 msg_payload['start_node'] = start_node_id
669 key = (start_node_id, short_channel_id)
/dports/science/nest/nest-simulator-3.1/nestkernel/
H A Dnode_collection.cpp836 index start_node_id = ( *( parts_[ middle ].begin() + start_offset_ ) ).node_id; in contains() local
841 …return node_id >= start_node_id and ( ( node_id - start_node_id ) % step_ ) == 0 and node_id <= st… in contains()
/dports/java/java-subversion/subversion-1.14.1/subversion/libsvn_fs_fs/
H A Dtransaction.c3138 apr_uint64_t start_node_id, in write_final_rev() argument
3183 start_node_id, start_copy_id, initial_offset, in write_final_rev()
3282 get_final_id(&node_id, rev, start_node_id, ffd->format); in write_final_rev()
3501 apr_uint64_t start_node_id, in write_final_current() argument
3516 start_node_id += txn_node_id; in write_final_current()
3519 return svn_fs_fs__write_current(fs, rev, start_node_id, start_copy_id, in write_final_current()
3748 apr_uint64_t start_node_id; in commit_body() local
3778 SVN_ERR(svn_fs_fs__read_current(&old_rev, &start_node_id, &start_copy_id, in commit_body()
3810 start_node_id, start_copy_id, initial_offset, in commit_body()
3916 SVN_ERR(write_final_current(cb->fs, txn_id, new_rev, start_node_id, in commit_body()
/dports/devel/py-subversion/subversion-1.14.1/subversion/libsvn_fs_fs/
H A Dtransaction.c3138 apr_uint64_t start_node_id, in write_final_rev() argument
3183 start_node_id, start_copy_id, initial_offset, in write_final_rev()
3282 get_final_id(&node_id, rev, start_node_id, ffd->format); in write_final_rev()
3501 apr_uint64_t start_node_id, in write_final_current() argument
3516 start_node_id += txn_node_id; in write_final_current()
3519 return svn_fs_fs__write_current(fs, rev, start_node_id, start_copy_id, in write_final_current()
3748 apr_uint64_t start_node_id; in commit_body() local
3778 SVN_ERR(svn_fs_fs__read_current(&old_rev, &start_node_id, &start_copy_id, in commit_body()
3810 start_node_id, start_copy_id, initial_offset, in commit_body()
3916 SVN_ERR(write_final_current(cb->fs, txn_id, new_rev, start_node_id, in commit_body()

12