Home
last modified time | relevance | path

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

/DragonReach/src/manager/unit_manager/
H A Dmod.rs55 let mut hasher = DefaultHasher::new(); in insert_into_name_table() localVariable
56 path.hash(&mut hasher); in insert_into_name_table()
57 let hash = hasher.finish(); in insert_into_name_table()
63 let mut hasher = DefaultHasher::new(); in contains_name() localVariable
64 path.hash(&mut hasher); in contains_name()
65 let hash = hasher.finish(); in contains_name()
71 let mut hasher = DefaultHasher::new(); in get_unit_with_name() localVariable
72 name.hash(&mut hasher); in get_unit_with_name()
73 let hash = hasher.finish(); in get_unit_with_name()
97 let mut hasher = DefaultHasher::new(); in get_id_with_path() localVariable
[all …]