Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/environ/src/collections/
H A Dhash_map.rs18 pub struct TryHashMap<K, V, S = DefaultHashBuilder> { struct
22 impl<K, V, S> TryClone for TryHashMap<K, V, S> argument
38 impl<K, V, S> Default for TryHashMap<K, V, S> implementation
49 impl<K, V, S> PartialEq for TryHashMap<K, V, S> implementation
60 impl<K, V, S> Eq for TryHashMap<K, V, S> implementation
68 impl<K, V, S> fmt::Debug for TryHashMap<K, V, S> implementation
78 impl<K, V> TryHashMap<K, V, DefaultHashBuilder> { impl
87 impl<K, V> TryHashMap<K, V, DefaultHashBuilder> impl
100 impl<K, V, S> TryHashMap<K, V, S> { impl
165 impl<K, V, S> TryHashMap<K, V, S> implementation
[all …]
/wasmtime-44.0.1/crates/fuzzing/tests/oom/
H A Dhash_map.rs2 use wasmtime_environ::collections::{TryClone, TryHashMap};
8 let _s = TryHashMap::<usize, usize>::with_capacity(100)?; in try_hash_map_with_capacity()
16 let mut map = TryHashMap::<usize, usize>::new(); in try_hash_map_reserve()
25 let mut map = TryHashMap::<usize, usize>::new(); in try_hash_map_insert()
39 let mut map = TryHashMap::new(); in try_hash_map_try_clone()
/wasmtime-44.0.1/crates/environ/src/
H A Dprelude.rs23 TryBTreeMap, TryClone, TryCollect, TryEntitySet, TryExtend, TryFromIterator, TryHashMap,
H A Dcollections.rs13 pub use hash_map::TryHashMap;
H A Dstring_pool.rs31 map: mem::ManuallyDrop<TryHashMap<&'static str, Atom>>,
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/func/
H A Dtyped.rs2137 TryHashMap::<K, V>::typecheck(ty, types) in typecheck()
2182 Ok(TryHashMap::<K, V>::linear_lift_from_flat(cx, ty, src)?.into()) in linear_lift_from_flat()
2190 Ok(TryHashMap::<K, V>::linear_lift_from_memory(cx, ty, bytes)?.into()) in linear_lift_from_memory()
2226 unsafe impl<K, V> ComponentType for TryHashMap<K, V> implementation
2248 unsafe impl<K, V> Lower for TryHashMap<K, V> implementation
2279 unsafe impl<K, V> Lift for TryHashMap<K, V> implementation
2311 ) -> Result<TryHashMap<K, V>> in lift_try_map()
2316 let mut result = TryHashMap::with_capacity(len)?; in lift_try_map()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dlinker.rs87 map: TryHashMap<ImportKey, Definition>,
163 map: TryHashMap::new(), in new()