Home
last modified time | relevance | path

Searched refs:path_cache (Results 1 – 25 of 113) sorted by relevance

12345

/dports/devel/godot2-tools/godot-2.1.6-stable/scene/animation/
H A Danimation_cache.cpp42 if (path_cache[i].node != p_node) in _node_exit_tree()
61 path_cache.clear(); in _clear_cache()
81 path_cache.push_back(Path()); in _update_cache()
94 path_cache.push_back(Path()); in _update_cache()
109 path_cache.push_back(Path()); in _update_cache()
165 path_cache.push_back(Path()); in _update_cache()
176 path_cache.push_back(Path()); in _update_cache()
184 path_cache.push_back(path); in _update_cache()
203 Path &p = path_cache[p_idx]; in set_track_transform()
224 Path &p = path_cache[p_idx]; in set_track_value()
[all …]
/dports/devel/godot2/godot-2.1.6-stable/scene/animation/
H A Danimation_cache.cpp42 if (path_cache[i].node != p_node) in _node_exit_tree()
61 path_cache.clear(); in _clear_cache()
81 path_cache.push_back(Path()); in _update_cache()
94 path_cache.push_back(Path()); in _update_cache()
109 path_cache.push_back(Path()); in _update_cache()
165 path_cache.push_back(Path()); in _update_cache()
176 path_cache.push_back(Path()); in _update_cache()
184 path_cache.push_back(path); in _update_cache()
203 Path &p = path_cache[p_idx]; in set_track_transform()
224 Path &p = path_cache[p_idx]; in set_track_value()
[all …]
/dports/devel/radare2/radare2-5.1.1/libr/util/
H A Dintervaltree.c50 RBIter *path_cache = user; in cmp_exact_node() local
51 if (!path_cache->len) { in cmp_exact_node()
55 path_cache->path[path_cache->len++] = cur; in cmp_exact_node()
65 while (r_rbtree_iter_has (path_cache)) { in cmp_exact_node()
75 path_cache->path[path_cache->len++] = rbnode; in cmp_exact_node()
80 rbnode = path_cache->path[--path_cache->len]; in cmp_exact_node()
81 } while (path_cache->len && path_cache->path[path_cache->len - 1]->child[1] == rbnode); in cmp_exact_node()
89 for (i = 0; i < path_cache->len - 1; i++) { in cmp_exact_node()
91 next_child = path_cache->path[i + 1]; in cmp_exact_node()
140 RBIter path_cache = { 0 }; in r_interval_tree_delete() local
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/scene/animation/
H A Danimation_cache.cpp43 if (path_cache[i].node != p_node) in _node_exit_tree()
62 path_cache.clear(); in _clear_cache()
82 path_cache.push_back(Path()); in _update_cache()
93 path_cache.push_back(Path()); in _update_cache()
101 path_cache.push_back(Path()); in _update_cache()
112 path_cache.push_back(Path()); in _update_cache()
118 path_cache.push_back(Path()); in _update_cache()
158 path_cache.push_back(Path()); in _update_cache()
166 path_cache.push_back(Path()); in _update_cache()
173 path_cache.push_back(path); in _update_cache()
[all …]
/dports/devel/godot/godot-3.2.3-stable/scene/animation/
H A Danimation_cache.cpp43 if (path_cache[i].node != p_node) in _node_exit_tree()
62 path_cache.clear(); in _clear_cache()
82 path_cache.push_back(Path()); in _update_cache()
93 path_cache.push_back(Path()); in _update_cache()
101 path_cache.push_back(Path()); in _update_cache()
112 path_cache.push_back(Path()); in _update_cache()
118 path_cache.push_back(Path()); in _update_cache()
158 path_cache.push_back(Path()); in _update_cache()
166 path_cache.push_back(Path()); in _update_cache()
173 path_cache.push_back(path); in _update_cache()
[all …]
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/
H A Dreloc.c31 Cache *path_cache; variable
175 if (!path_cache) in get_installation_path_for()
176 path_cache = cache_new(path_resolver_new(lookup_sysprefix())); in get_installation_path_for()
177 return cache_lookup(path_cache, template); in get_installation_path_for()
183 if (path_cache) in reloc_deinit()
185 cache_free(path_cache); in reloc_deinit()
186 path_cache = NULL; in reloc_deinit()
/dports/www/p5-Nginx-Simple/Nginx-Simple-0.07/lib/Nginx/Simple/
H A DDispatcher.pm13 my %path_cache;
56 return $path_cache{$called_path}
57 if $path_cache{$called_path};
91 $path_cache{$called_path} = {
98 return $path_cache{$called_path};
/dports/sysutils/syslog-ng/syslog-ng-3.35.1/lib/tests/
H A Dtest_reloc.c28 Cache *path_cache; variable
53 result = cache_lookup(path_cache, test_data->template); in ParameterizedTest()
62 path_cache = cache_new(path_resolver); in setup()
71 cache_free(path_cache); in teardown()
/dports/games/openttd/openttd-12.1/src/pathfinder/yapf/
H A Dyapf_road.cpp357 return pf.ChooseRoadTrack(v, tile, enterdir, path_found, path_cache); in stChooseRoadTrack()
396 path_cache.td.push_front(pNode->GetTrackdir()); in ChooseRoadTrack()
397 path_cache.tile.push_front(pNode->GetTile()); in ChooseRoadTrack()
406 if (path_found && !path_cache.empty() && tile == v->dest_tile) { in ChooseRoadTrack()
407 path_cache.td.pop_back(); in ChooseRoadTrack()
408 path_cache.tile.pop_back(); in ChooseRoadTrack()
420 while (!path_cache.empty() && non_cached_area.Contains(path_cache.tile.back())) { in ChooseRoadTrack()
421 path_cache.td.pop_back(); in ChooseRoadTrack()
422 path_cache.tile.pop_back(); in ChooseRoadTrack()
535 …ack)(const RoadVehicle*, TileIndex, DiagDirection, bool &path_found, RoadVehPathCache &path_cache); in YapfRoadVehicleChooseTrack()
[all …]
H A Dyapf_ship.cpp139 …eIndex tile, DiagDirection enterdir, TrackBits tracks, bool &path_found, ShipPathCache &path_cache) in ChooseShipTrack() argument
185 path_cache.push_front(pNode->GetTrackdir()); in ChooseShipTrack()
195 if (path_found && !path_cache.empty()) path_cache.pop_back(); in ChooseShipTrack()
352 …eIndex tile, DiagDirection enterdir, TrackBits tracks, bool &path_found, ShipPathCache &path_cache) in YapfShipChooseTrack() argument
355 …ck)(const Ship*, TileIndex, DiagDirection, TrackBits, bool &path_found, ShipPathCache &path_cache); in YapfShipChooseTrack()
363 Trackdir td_ret = pfnChooseShipTrack(v, tile, enterdir, tracks, path_found, path_cache); in YapfShipChooseTrack()
H A Dyapf.h29 …Index tile, DiagDirection enterdir, TrackBits tracks, bool &path_found, ShipPathCache &path_cache);
48 …e, DiagDirection enterdir, TrackdirBits trackdirs, bool &path_found, RoadVehPathCache &path_cache);
/dports/graphics/py-pyx/PyX-0.15/pyx/
H A Dconfig.py116 self.path_cache = {}
121 if filename in self.path_cache:
122 return [lambda: builtinopen(self.path_cache[filename], "rb")]
131 self.path_cache[item] = full_item
135 return [lambda: builtinopen(self.path_cache[found], "rb")]
145 self.path_cache = {}
148 if not self.path_cache:
161 elif line and line not in self.path_cache:
162 self.path_cache[line] = os.path.join(dir, line)
164 if filename in self.path_cache:
[all …]
/dports/textproc/py-isbntools/isbntools-4.3.28/isbntools/bin/
H A Dconfc.py30 path_cache = os.path.join(CONF_PATH, CACHE_FILE)
31 sc = ShelveCache(path_cache)
40 path_cache = os.path.join(CONF_PATH, CACHE_FILE)
41 sc = ShelveCache(path_cache)
/dports/devel/godot2-tools/godot-2.1.6-stable/core/
H A Dresource.cpp153 if (path_cache == p_path) in set_path()
156 if (path_cache != "") { in set_path()
158 ResourceCache::resources.erase(path_cache); in set_path()
161 path_cache = ""; in set_path()
171 path_cache = p_path; in set_path()
173 if (path_cache != "") { in set_path()
175 ResourceCache::resources[path_cache] = this; in set_path()
184 return path_cache; in get_path()
367 if (path_cache != "") in ~Resource()
368 ResourceCache::resources.erase(path_cache); in ~Resource()
/dports/devel/godot2/godot-2.1.6-stable/core/
H A Dresource.cpp153 if (path_cache == p_path) in set_path()
156 if (path_cache != "") { in set_path()
158 ResourceCache::resources.erase(path_cache); in set_path()
161 path_cache = ""; in set_path()
171 path_cache = p_path; in set_path()
173 if (path_cache != "") { in set_path()
175 ResourceCache::resources[path_cache] = this; in set_path()
184 return path_cache; in get_path()
367 if (path_cache != "") in ~Resource()
368 ResourceCache::resources.erase(path_cache); in ~Resource()
/dports/www/py-lektor/Lektor-3.2.2/lektor/
H A Dbuilder.py97 def __init__(self, builder, path_cache): argument
103 self.path_cache = path_cache
1150 if path_cache is None:
1151 path_cache = PathCache(self.env)
1152 return BuildState(self, path_cache)
1201 path_cache = PathCache(self.env)
1204 with self.new_build_state(path_cache=path_cache) as build_state:
1216 def build(self, source, path_cache=None): argument
1218 with self.new_build_state(path_cache=path_cache) as build_state:
1252 path_cache = PathCache(self.env)
[all …]
H A Dsourceobj.py145 def get_mtime(self, path_cache): argument
148 def get_checksum(self, path_cache): argument
/dports/games/minetest/minetest-5.4.1/src/
H A Dporting.cpp159 std::string path_cache = path_user + DIR_DELIM + "cache"; variable
533 if (path_cache == local_cache_path || !fs::PathExists(local_cache_path) in migrateCachePath()
534 || fs::PathExists(path_cache)) { in migrateCachePath()
537 if (!fs::Rename(local_cache_path, path_cache)) { in migrateCachePath()
586 path_cache = path_user + DIR_DELIM + "cache"; in initializePaths()
595 path_cache = path_user + DIR_DELIM + "cache"; in initializePaths()
602 path_cache = std::string(cache_dir) + DIR_DELIM + PROJECT_NAME; in initializePaths()
605 path_cache = std::string(home_dir) + DIR_DELIM + ".cache" in initializePaths()
609 path_cache = path_user + DIR_DELIM + "cache"; in initializePaths()
618 infostream << "Detected cache path: " << path_cache << std::endl; in initializePaths()
/dports/devel/godot/godot-3.2.3-stable/core/
H A Dresource.cpp52 if (path_cache == p_path) in set_path()
55 if (path_cache != "") { in set_path()
58 ResourceCache::resources.erase(path_cache); in set_path()
62 path_cache = ""; in set_path()
85 path_cache = p_path; in set_path()
87 if (path_cache != "") { in set_path()
90 ResourceCache::resources[path_cache] = this; in set_path()
100 return path_cache; in get_path()
447 if (path_cache != "") { in ~Resource()
449 ResourceCache::resources.erase(path_cache); in ~Resource()
/dports/devel/godot-tools/godot-3.2.3-stable/core/
H A Dresource.cpp52 if (path_cache == p_path) in set_path()
55 if (path_cache != "") { in set_path()
58 ResourceCache::resources.erase(path_cache); in set_path()
62 path_cache = ""; in set_path()
85 path_cache = p_path; in set_path()
87 if (path_cache != "") { in set_path()
90 ResourceCache::resources[path_cache] = this; in set_path()
100 return path_cache; in get_path()
447 if (path_cache != "") { in ~Resource()
449 ResourceCache::resources.erase(path_cache); in ~Resource()
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/blockchain/
H A DChainFinder.py85 def find_ancestral_path(self, h1, h2, path_cache={}): argument
86 p1 = self.maximum_path(h1, path_cache)
87 p2 = self.maximum_path(h2, path_cache)
/dports/games/freeorion/freeorion-0.4.10.2/default/python/AI/
H A Dpathfinding.py215 path_cache = {}
234 path_cache.setdefault(current, []).append(path_info)
256 … if any((dist <= new_dist and fuel >= new_fuel) for dist, fuel, _ in path_cache.get(neighbor, [])):
/dports/devel/p5-Test-Harness/Test-Harness-3.42/examples/bin/
H A Dtprove_gtk328 my $path_cache = $self->{_path_cache};
330 if ( $path_cache->{$filename} ) {
331 my $iter = $model->get_iter( $path_cache->{$filename} );
341 $view->scroll_to_cell( $path_cache->{$filename} );
/dports/devel/tig/tig-2.5.4/src/
H A Dparse.c250 DEFINE_STRING_MAP(path_cache, struct path_entry *, path, 32)
257 struct path_entry *entry = string_map_get(&path_cache, path); in get_path()
261 if (!entry || !string_map_put(&path_cache, path, entry)) { in get_path()
/dports/science/gnudatalanguage/gdl-1.0.1/src/pro/utilities/
H A Dpath_show.pro10 ; an equivalent of HELP, /path_cache as is in GDL
11 ; Unfortunatelly, the IDL HELP, /path_cache does not take

12345