Home
last modified time | relevance | path

Searched refs:Slab (Results 1 – 25 of 34) sorted by relevance

12

/external/google-fonts/zilla-slab/
DMETADATA.pb1 name: "Zilla Slab"
7 name: "Zilla Slab"
12 full_name: "Zilla Slab Light"
16 name: "Zilla Slab"
21 full_name: "Zilla Slab Light Italic"
25 name: "Zilla Slab"
30 full_name: "Zilla Slab"
34 name: "Zilla Slab"
39 full_name: "Zilla Slab Italic"
43 name: "Zilla Slab"
[all …]
DMETADATA6 …"Zilla Slab is Mozilla's core typeface, used for the Mozilla wordmark, headlines and throughout th…
/external/rust/crates/slab/tests/
Dslab.rs7 let mut slab = Slab::new(); in insert_get_remove_one()
24 let mut slab = Slab::with_capacity(10); in insert_get_many()
43 let mut slab = Slab::with_capacity(10); in insert_get_remove_many()
65 let mut slab = Slab::with_capacity(1); in insert_with_vacant_entry()
79 let mut slab = Slab::<usize>::with_capacity(1); in get_vacant_entry_without_using()
87 let slab = Slab::<usize>::with_capacity(1); in invalid_get_panics()
94 let mut slab = Slab::<usize>::with_capacity(1); in double_remove_panics()
103 let mut slab = Slab::<usize>::with_capacity(1); in invalid_remove_panics()
109 let mut slab = Slab::new(); in slab_get_mut()
121 let mut slab = Slab::with_capacity(10); in reserve_does_not_allocate_if_available()
[all …]
/external/rust/crates/slab/src/
Dlib.rs116 pub struct Slab<T> { struct
128 impl<T> Default for Slab<T> { implementation
130 Slab::new() in default()
158 slab: &'a mut Slab<T>,
183 impl<T> Slab<T> { implementation
195 pub fn new() -> Slab<T> { in new()
196 Slab::with_capacity(0) in new()
226 pub fn with_capacity(capacity: usize) -> Slab<T> { in with_capacity()
227 Slab { in with_capacity()
783 impl<T> ops::Index<usize> for Slab<T> { implementation
[all …]
/external/google-fonts/arbutus-slab/
DMETADATA.pb1 name: "Arbutus Slab"
7 name: "Arbutus Slab"
12 full_name: "Arbutus Slab Regular"
DMETADATA6 "Arbutus Slab is a sturdy, medium contrast, slab serif typeface inspired by "
/external/llvm/unittests/Support/
DAllocatorTest.cpp153 void *Slab = (void *)alignAddr((char*)MemBase + sizeof(void *), Alignment); in Allocate() local
156 ((void**)Slab)[-1] = MemBase; in Allocate()
159 return Slab; in Allocate()
162 void Deallocate(void *Slab, size_t Size) { in Deallocate() argument
163 free(((void**)Slab)[-1]); in Deallocate()
/external/llvm-project/llvm/unittests/Support/
DAllocatorTest.cpp200 void *Slab = (void *)alignAddr((char*)MemBase + sizeof(void *), Alignment); in Allocate() local
203 ((void**)Slab)[-1] = MemBase; in Allocate()
206 return Slab; in Allocate()
209 void Deallocate(void *Slab, size_t /*Size*/, size_t /*Alignment*/) { in Deallocate() argument
210 free(((void**)Slab)[-1]); in Deallocate()
/external/rust/crates/slab/
DCHANGELOG.md3 * Add `Slab::drain` (#56).
8 * Implement `Default` for `Slab` (#43).
DREADME.md1 # Slab chapter
24 use slab::Slab;
26 let mut slab = Slab::new();
/external/rust/crates/tokio/src/util/
Dslab.rs58 pub(crate) struct Slab<T> { struct
173 impl<T> Slab<T> { implementation
175 pub(crate) fn new() -> Slab<T> { in new()
180 let mut slab = Slab { in new()
321 impl<T> fmt::Debug for Slab<T> { implementation
657 let mut slab = Slab::<Foo>::new(); in insert_remove()
694 let mut slab = Slab::<Foo>::new(); in insert_many()
725 let mut slab = Slab::<Foo>::new(); in insert_drop_reverse()
751 let mut slab = Slab::<Foo>::new(); in no_compaction_if_page_still_in_use()
776 let mut slab = Slab::<Foo>::new(); in compact_all()
[all …]
/external/llvm-project/clang-tools-extra/clangd/index/
DFileIndex.cpp254 Item.Slab = std::move(Refs); in update()
275 RefSlabs.push_back(FileAndRefs.second.Slab); in buildIndex()
290 for (const auto &Slab : SymbolSlabs) { in buildIndex() local
291 for (const auto &Sym : *Slab) { in buildIndex()
316 for (const auto &Slab : SymbolSlabs) in buildIndex() local
317 for (const auto &Sym : *Slab) { in buildIndex()
365 for (const auto &Slab : SymbolSlabs) in buildIndex() local
366 StorageSize += Slab->bytes(); in buildIndex()
400 .addUsage(RefSlab.second.Slab->bytes()); in profile()
DMemIndex.cpp19 std::unique_ptr<SymbolIndex> MemIndex::build(SymbolSlab Slab, RefSlab Refs, in build() argument
22 const auto BackingDataSize = Slab.bytes() + Refs.bytes(); in build()
23 auto Data = std::make_pair(std::move(Slab), std::move(Refs)); in build()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DSerializationTests.cpp194 std::vector<std::string> YAMLFromSymbols(const SymbolSlab &Slab) { in YAMLFromSymbols() argument
196 for (const auto &Sym : Slab) in YAMLFromSymbols()
200 std::vector<std::string> YAMLFromRefs(const RefSlab &Slab) { in YAMLFromRefs() argument
202 for (const auto &Refs : Slab) in YAMLFromRefs()
207 std::vector<std::string> YAMLFromRelations(const RelationSlab &Slab) { in YAMLFromRelations() argument
209 for (const auto &Rel : Slab) in YAMLFromRelations()
DTestIndex.cpp77 SymbolSlab::Builder Slab; in generateSymbols() local
79 Slab.insert(symbol(QName)); in generateSymbols()
80 return std::move(Slab).build(); in generateSymbols()
DSyncAPI.cpp140 RefSlab::Builder Slab; in getRefs() local
141 Index.refs(Req, [&](const Ref &S) { Slab.insert(ID, S); }); in getRefs()
142 return std::move(Slab).build(); in getRefs()
DTestTU.cpp168 const Symbol &findSymbol(const SymbolSlab &Slab, llvm::StringRef QName) { in findSymbol() argument
170 for (const Symbol &S : Slab) { in findSymbol()
183 << ::testing::PrintToString(Slab); in findSymbol()
DIndexTests.cpp91 RelationSlab Slab = std::move(Builder).build(); in TEST() local
92 EXPECT_THAT(Slab.lookup(A, RelationKind::BaseOf), in TEST()
107 RelationSlab Slab = std::move(Builder).build(); in TEST() local
108 EXPECT_THAT(Slab, UnorderedElementsAre(Relation{A, RelationKind::BaseOf, B}, in TEST()
DFileIndexTests.cpp82 SymbolSlab::Builder Slab; in numSlab() local
84 Slab.insert(symbol(std::to_string(i))); in numSlab()
85 return std::make_unique<SymbolSlab>(std::move(Slab).build()); in numSlab()
89 RefSlab::Builder Slab; in refSlab() local
93 Slab.insert(ID, R); in refSlab()
94 return std::make_unique<RefSlab>(std::move(Slab).build()); in refSlab()
/external/rust/crates/tokio/src/io/driver/
Dmod.rs18 use crate::util::slab::{self, Slab};
39 resources: Option<Slab<ScheduledIo>>,
66 resources: Mutex<Option<Slab<ScheduledIo>>>,
119 let slab = Slab::new(); in new()
/external/skqp/src/compute/hs/
DREADME.md230 1. *Slab Load*
231 1. *Slab Sort*
233 1. *Multi-Slab Flip Merge*
234 1. *Slab Store*
238 1. If necessary, *Multi-Slab Half Merge*
239 1. If necessary, *Slab Half Merge*
242 1. Optionally, *Slab Transpose & Store*
243 1. Otherwise: *Slab Store*
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/
DJITLinkMemoryManager.cpp53 sys::MemoryBlock Slab(SlabStart, SlabSize); in allocate() local
54 if (auto EC = sys::Memory::releaseMappedMemory(Slab)) in allocate()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLinkMemoryManager.cpp53 sys::MemoryBlock Slab(SlabStart, SlabSize); in allocate() local
54 if (auto EC = sys::Memory::releaseMappedMemory(Slab)) in allocate()
/external/rust/crates/futures-util/src/future/future/
Dshared.rs4 use slab::Slab;
26 wakers: Mutex<Option<Slab<Option<Waker>>>>,
89 wakers: Mutex::new(Some(Slab::new())), in new()
/external/rust/crates/futures-util/src/lock/
Dmutex.rs3 use slab::Slab;
22 waiters: StdMutex<Slab<Waiter>>,
78 waiters: StdMutex::new(Slab::new()), in new()

12