Home
last modified time | relevance | path

Searched defs:Slab (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/slab/src/
Dlib.rs131 pub struct Slab<T> { struct
143 impl<T> Default for Slab<T> { argument
216 impl<T> Slab<T> { impl
1126 impl<T> ops::Index<usize> for Slab<T> { implementation
1137 impl<T> ops::IndexMut<usize> for Slab<T> { implementation
1146 impl<T> IntoIterator for Slab<T> { implementation
1158 impl<'a, T> IntoIterator for &'a Slab<T> { implementation
1167 impl<'a, T> IntoIterator for &'a mut Slab<T> { implementation
1206 impl<T> FromIterator<(usize, T)> for Slab<T> { implementation
1260 impl<T> fmt::Debug for Slab<T> implementation
Dserde.rs9 impl<T> Serialize for Slab<T> implementation
91 impl<'de, T> Deserialize<'de> for Slab<T> implementation
/external/rust/crates/slab/
DREADME.md1 # Slab chapter
/external/llvm/unittests/Support/
DAllocatorTest.cpp153 void *Slab = (void *)alignAddr((char*)MemBase + sizeof(void *), Alignment); in Allocate() local
162 void Deallocate(void *Slab, size_t Size) { in Deallocate()
/external/rust/crates/tokio/src/util/
Dslab.rs58 pub(crate) struct Slab<T> { struct
60 pages: [Arc<Page<T>>; NUM_PAGES],
63 cached: [CachedPage<T>; NUM_PAGES],
173 impl<T> Slab<T> { implementation
321 impl<T> fmt::Debug for Slab<T> { implementation
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLinkMemoryManager.cpp53 sys::MemoryBlock Slab(SlabStart, SlabSize); in allocate() local