Searched refs:insert_entry (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/hashbrown/src/ |
D | rustc_entry.rs | 154 Vacant(entry) => entry.insert_entry(value), in insert() 598 pub fn insert_entry(self, value: V) -> RustcOccupiedEntry<'a, K, V, A> { in insert_entry() method
|
D | map.rs | 1945 RawEntryMut::Vacant(entry) => entry.insert_entry(key, value), in insert() 2255 let &mut (ref mut k, ref mut v) = self.table.insert_entry( in insert_hashed_nocheck() 2277 .insert_entry(hash, (key, value), |x| hasher(&x.0)); in insert_with_hasher() 2282 fn insert_entry(self, key: K, value: V) -> RawOccupiedEntryMut<'a, K, V, S, A> in insert_entry() method 2727 Entry::Vacant(entry) => entry.insert_entry(value), in insert() 3337 let entry = table.insert_entry( in insert() 3346 fn insert_entry(self, value: V) -> OccupiedEntry<'a, K, V, S, A> in insert_entry() method
|
/external/iptables/iptables/ |
D | ip6tables.c | 516 insert_entry(const xt_chainlabel chain, in insert_entry() function 1635 ret = insert_entry(chain, e, rulenum - 1, in do_command6()
|
D | iptables.c | 507 insert_entry(const xt_chainlabel chain, in insert_entry() function 1625 ret = insert_entry(chain, e, rulenum - 1, in do_command4()
|
/external/rust/crates/hashbrown/ |
D | CHANGELOG.md | 60 - `insert_entry`: `insert` and `as_mut`
|
/external/rust/crates/hashbrown/src/raw/ |
D | mod.rs | 864 pub fn insert_entry(&mut self, hash: u64, value: T, hasher: impl Fn(&T) -> u64) -> &mut T { in insert_entry() method
|
/external/rust/crates/hashlink/src/ |
D | linked_hash_map.rs | 773 pub fn insert_entry(mut self, value: V) -> (K, V) { in insert_entry() method
|