Home
last modified time | relevance | path

Searched refs:FxHashSet (Results 1 – 25 of 533) sorted by relevance

12345678910>>...22

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_incremental/src/persist/fs/
H A Dtests.rs15 .collect::<FxHashSet<PathBuf>>(), in test_all_except_most_recent()
18 .collect::<FxHashSet<PathBuf>>() in test_all_except_most_recent()
22 all_except_most_recent(vec![]).keys().cloned().collect::<FxHashSet<PathBuf>>(), in test_all_except_most_recent()
23 FxHashSet::default() in test_all_except_most_recent()
38 let already_visited = FxHashSet::default(); in test_find_source_directory_in_iter()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_incremental/src/
H A Dassert_dep_graph.rs37 use rustc_data_structures::fx::FxHashSet;
310 ) -> Option<FxHashSet<&'q DepNode>> { in node_set()
322 sources: &Option<FxHashSet<&'q DepNode>>, in filter_nodes()
324 ) -> FxHashSet<&'q DepNode> { in filter_nodes()
340 starts: &FxHashSet<&'q DepNode>, in walk_nodes()
342 ) -> FxHashSet<&'q DepNode> { in walk_nodes()
343 let mut set = FxHashSet::default(); in walk_nodes()
364 sources: &FxHashSet<&'q DepNode>, in walk_between()
365 targets: &FxHashSet<&'q DepNode>, in walk_between()
366 ) -> FxHashSet<&'q DepNode> { in walk_between()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/rust-analyzer/crates/base_db/src/
H A Dlib.rs8 use rustc_hash::FxHashSet;
58 fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>>; in relevant_crates()
94 fn source_root_crates(&self, id: SourceRootId) -> Arc<FxHashSet<CrateId>>; in source_root_crates()
97 fn source_root_crates(db: &dyn SourceDatabaseExt, id: SourceRootId) -> Arc<FxHashSet<CrateId>> { in source_root_crates()
105 .collect::<FxHashSet<_>>(); in source_root_crates()
123 fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> { in relevant_crates()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_borrowck/src/
H A Dused_muts.rs1 use rustc_data_structures::fx::FxHashSet;
27 temporary_used_locals: FxHashSet<Local>, in gather_used_muts()
28 mut never_initialized_mut_locals: FxHashSet<Local>, in gather_used_muts()
49 temporary_used_locals: FxHashSet<Local>,
50 never_initialized_mut_locals: &'visit mut FxHashSet<Local>,
/dports/lang/rust/rustc-1.58.1-src/src/test/ui-fulldeps/internal-lints/
H A Ddefault_hash_types.stderr22 error: prefer `FxHashSet` over `HashSet`, it has better performance
28 = note: a `use rustc_data_structures::fx::FxHashSet` may be necessary
30 error: prefer `FxHashSet` over `HashSet`, it has better performance
36 = note: a `use rustc_data_structures::fx::FxHashSet` may be necessary
H A Ddefault_hash_types.rs8 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
25 let _fx_set: FxHashSet<String> = FxHashSet::default(); in main()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/crates/base_db/src/
H A Dlib.rs8 use rustc_hash::FxHashSet;
58 fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>>; in relevant_crates()
94 fn source_root_crates(&self, id: SourceRootId) -> Arc<FxHashSet<CrateId>>; in source_root_crates()
97 fn source_root_crates(db: &dyn SourceDatabaseExt, id: SourceRootId) -> Arc<FxHashSet<CrateId>> { in source_root_crates()
123 fn relevant_crates(&self, file_id: FileId) -> Arc<FxHashSet<CrateId>> { in relevant_crates()
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/
H A Dmodule_style.rs7 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
91 let mut folder_segments = FxHashSet::default(); in check_crate()
93 let mut mod_folders = FxHashSet::default(); in check_crate()
141 folder_segments: &mut FxHashSet<OsString>, in process_paths_for_mod_files()
142 mod_folders: &mut FxHashSet<OsString>, in process_paths_for_mod_files()
H A Dblacklisted_name.rs2 use rustc_data_structures::fx::FxHashSet;
27 blacklist: FxHashSet<String>,
32 pub fn new(blacklist: FxHashSet<String>) -> Self { in new()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/crates/ide/src/
H A Dfolding_ranges.rs2 use rustc_hash::FxHashSet;
43 let mut visited_comments = FxHashSet::default(); in folding_ranges()
44 let mut visited_imports = FxHashSet::default(); in folding_ranges()
45 let mut visited_mods = FxHashSet::default(); in folding_ranges()
46 let mut visited_consts = FxHashSet::default(); in folding_ranges()
47 let mut visited_statics = FxHashSet::default(); in folding_ranges()
153 fn contiguous_range_for_item_group<N>(first: N, visited: &mut FxHashSet<N>) -> Option<TextRange> in contiguous_range_for_item_group()
209 visited: &mut FxHashSet<ast::Comment>, in contiguous_range_for_comment()
/dports/lang/rust/rustc-1.58.1-src/src/tools/rust-analyzer/crates/ide/src/
H A Dfolding_ranges.rs2 use rustc_hash::FxHashSet;
43 let mut visited_comments = FxHashSet::default(); in folding_ranges()
44 let mut visited_imports = FxHashSet::default(); in folding_ranges()
45 let mut visited_mods = FxHashSet::default(); in folding_ranges()
46 let mut visited_consts = FxHashSet::default(); in folding_ranges()
47 let mut visited_statics = FxHashSet::default(); in folding_ranges()
153 fn contiguous_range_for_item_group<N>(first: N, visited: &mut FxHashSet<N>) -> Option<TextRange> in contiguous_range_for_item_group()
209 visited: &mut FxHashSet<ast::Comment>, in contiguous_range_for_comment()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_middle/src/traits/
H A Dutil.rs1 use rustc_data_structures::stable_set::FxHashSet;
12 Elaborator { tcx, visited: FxHashSet::from_iter([trait_ref]), stack: vec![trait_ref] } in supertraits()
17 visited: FxHashSet<PolyTraitRef<'tcx>>,
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_borrowck/src/type_check/liveness/
H A Dmod.rs1 use rustc_data_structures::fx::FxHashSet;
79 free_regions: &FxHashSet<RegionVid>, in compute_live_locals()
111 ) -> FxHashSet<RegionVid> { in regions_that_outlive_free_regions()
126 let mut outlives_free_region: FxHashSet<_> = stack.iter().cloned().collect(); in regions_that_outlive_free_regions()
/dports/misc/xplr/xplr-0.17.0/cargo-crates/mlua-0.7.0/src/serde/
H A Dde.rs6 use rustc_hash::FxHashSet;
19 visited: Rc<RefCell<FxHashSet<*const c_void>>>,
89 visited: Rc::new(RefCell::new(FxHashSet::default())), in new_with_options()
96 visited: Rc<RefCell<FxHashSet<*const c_void>>>, in from_parts()
316 visited: Rc<RefCell<FxHashSet<*const c_void>>>,
354 visited: Rc<RefCell<FxHashSet<*const c_void>>>,
410 visited: Rc<RefCell<FxHashSet<*const c_void>>>,
434 visited: Rc<RefCell<FxHashSet<*const c_void>>>,
502 visited: Rc<RefCell<FxHashSet<*const c_void>>>,
507 fn new(table: &Table, visited: &Rc<RefCell<FxHashSet<*const c_void>>>) -> Self { in new()
[all …]
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/cranelift/codegen/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
160 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
188 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
224 let mut grey = FxHashSet(); in postorder_blocks_loop()
225 let mut black = FxHashSet(); in postorder_blocks_loop()
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/cranelift-codegen-0.44.0/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
161 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
189 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
221 let mut grey = FxHashSet(); in postorder_ebbs_loop()
222 let mut black = FxHashSet(); in postorder_ebbs_loop()
/dports/www/firefox/firefox-99.0/third_party/rust/cranelift-codegen/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
161 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
189 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
225 let mut grey = FxHashSet(); in postorder_blocks_loop()
226 let mut black = FxHashSet(); in postorder_blocks_loop()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/cranelift-codegen/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
161 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
189 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
225 let mut grey = FxHashSet(); in postorder_blocks_loop()
226 let mut black = FxHashSet(); in postorder_blocks_loop()
/dports/lang/rust/rustc-1.58.1-src/vendor/cranelift-codegen/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
161 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
189 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
225 let mut grey = FxHashSet(); in postorder_blocks_loop()
226 let mut black = FxHashSet(); in postorder_blocks_loop()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/cranelift-codegen/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
161 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
189 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
225 let mut grey = FxHashSet(); in postorder_blocks_loop()
226 let mut black = FxHashSet(); in postorder_blocks_loop()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/cranelift-codegen/src/
H A Dlicm.rs7 use crate::fx::FxHashSet;
160 fn is_loop_invariant(inst: Inst, dfg: &DataFlowGraph, loop_values: &FxHashSet<Value>) -> bool { in is_loop_invariant()
188 let mut loop_values: FxHashSet<Value> = FxHashSet(); in remove_loop_invariant_instructions()
224 let mut grey = FxHashSet(); in postorder_blocks_loop()
225 let mut black = FxHashSet(); in postorder_blocks_loop()
/dports/misc/broot/broot-1.7.0/cargo-crates/hashbrown-0.9.1/tests/
H A Dserde.rs10 type FxHashSet<T> = HashSet<T, BuildHasherDefault<FxHasher>>; typedef
43 let set = FxHashSet::<u32>::default(); in set_serde_tokens_empty()
50 let mut set = FxHashSet::default(); in set_serde_tokens()
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/cargo-crates/hashbrown-0.9.0/tests/
H A Dserde.rs10 type FxHashSet<T> = HashSet<T, BuildHasherDefault<FxHasher>>; typedef
43 let set = FxHashSet::<u32>::default(); in set_serde_tokens_empty()
50 let mut set = FxHashSet::default(); in set_serde_tokens()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/hashbrown-0.9.1/tests/
H A Dserde.rs10 type FxHashSet<T> = HashSet<T, BuildHasherDefault<FxHasher>>; typedef
43 let set = FxHashSet::<u32>::default(); in set_serde_tokens_empty()
50 let mut set = FxHashSet::default(); in set_serde_tokens()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/hashbrown-0.9.1/tests/
H A Dserde.rs10 type FxHashSet<T> = HashSet<T, BuildHasherDefault<FxHasher>>; typedef
43 let set = FxHashSet::<u32>::default(); in set_serde_tokens_empty()
50 let mut set = FxHashSet::default(); in set_serde_tokens()

12345678910>>...22