Home
last modified time | relevance | path

Searched defs:RawTable (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/hashbrown/src/raw/
Dmod.rs369 pub struct RawTable<T, A: Allocator + Clone = Global> { struct
370 table: RawTableInner<A>, argument
375 /// Non-generic part of `RawTable` which allows functions to be instantiated only once regardless argument
395 impl<T> RawTable<T, Global> { implementation
423 impl<T, A: Allocator + Clone> RawTable<T, A> { impl
1124 unsafe impl<T, A: Allocator + Clone> Send for RawTable<T, A> where T: Send {} implementation
1125 unsafe impl<T, A: Allocator + Clone> Sync for RawTable<T, A> where T: Sync {} implementation
1469 impl<T: Clone, A: Allocator + Clone> Clone for RawTable<T, A> { implementation
1538 impl<T: Clone, A: Allocator + Clone> RawTableClone for RawTable<T, A> { implementation
1547 impl<T: Copy, A: Allocator + Clone> RawTableClone for RawTable<T, A> { implementation
[all …]
/external/rust/crates/hashbrown/src/external_trait_impls/rayon/
Draw.rs205 impl<T, A: Allocator + Clone> RawTable<T, A> { implementation
/external/llvm-project/clang-tools-extra/clangd/index/
DSerialization.cpp187 std::string RawTable; in finalize() local