Home
last modified time | relevance | path

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

/external/rust/crates/hashbrown/src/
Drustc_entry.rs154 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
Dmap.rs1945 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/
Dip6tables.c516 insert_entry(const xt_chainlabel chain, in insert_entry() function
1635 ret = insert_entry(chain, e, rulenum - 1, in do_command6()
Diptables.c507 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/
DCHANGELOG.md60 - `insert_entry`: `insert` and `as_mut`
/external/rust/crates/hashbrown/src/raw/
Dmod.rs864 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/
Dlinked_hash_map.rs773 pub fn insert_entry(mut self, value: V) -> (K, V) { in insert_entry() method