/external/webrtc/webrtc/modules/audio_conference_mixer/source/ |
D | memory_pool.h | 27 class MemoryPool 31 static int32_t CreateMemoryPool(MemoryPool*& memoryPool, 37 MemoryPool*& memoryPool); 43 MemoryPool(int32_t initialPoolSize); 44 ~MemoryPool(); 50 MemoryPool<MemoryType>::MemoryPool(int32_t initialPoolSize) in MemoryPool() function 56 MemoryPool<MemoryType>::~MemoryPool() in ~MemoryPool() 62 MemoryPool<MemoryType>::CreateMemoryPool(MemoryPool*& memoryPool, in CreateMemoryPool() 65 memoryPool = new MemoryPool(initialPoolSize); in CreateMemoryPool() 86 int32_t MemoryPool<MemoryType>::DeleteMemoryPool(MemoryPool*& memoryPool) in DeleteMemoryPool() [all …]
|
/external/google-fruit/include/fruit/impl/data_structures/ |
D | memory_pool.h | 29 class MemoryPool { 44 MemoryPool(); 46 MemoryPool(const MemoryPool&) = delete; 47 MemoryPool(MemoryPool&&); 48 MemoryPool& operator=(const MemoryPool&) = delete; 49 MemoryPool& operator=(MemoryPool&&); 50 ~MemoryPool();
|
D | memory_pool.defn.h | 29 inline MemoryPool::MemoryPool() : first_free(nullptr), capacity(0) {} in MemoryPool() function 31 inline MemoryPool::MemoryPool(MemoryPool&& other) in MemoryPool() function 37 inline MemoryPool& MemoryPool::operator=(MemoryPool&& other) { 50 inline MemoryPool::~MemoryPool() { in ~MemoryPool() 55 FRUIT_ALWAYS_INLINE inline T* MemoryPool::allocate(std::size_t n) { in allocate()
|
D | arena_allocator.h | 33 MemoryPool* pool; 56 ArenaAllocator(MemoryPool& memory_pool);
|
D | semistatic_graph.h | 190 SemistaticGraph(NodeIter first, NodeIter last, MemoryPool& memory_pool); 206 SemistaticGraph(const SemistaticGraph& x, NodeIter first, NodeIter last, MemoryPool& memory_pool);
|
D | arena_allocator.defn.h | 26 inline ArenaAllocator<T>::ArenaAllocator(MemoryPool& memory_pool) : pool(&memory_pool) {} in ArenaAllocator()
|
/external/google-fruit/include/fruit/impl/normalized_component_storage/ |
D | binding_normalization.h | 63 … FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, 75 … FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, 76 MemoryPool& memory_pool_for_fully_expanded_components_maps, 77 MemoryPool& memory_pool_for_component_replacements_maps, 88 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, MemoryPool& memory_pool, 117 … MemoryPool& memory_pool, MemoryPool& memory_pool_for_fully_expanded_components_maps, 118 MemoryPool& memory_pool_for_component_replacements_maps, 138 … FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, 139 MemoryPool& memory_pool_for_fully_expanded_components_maps, 140 MemoryPool& memory_pool_for_component_replacements_maps, [all …]
|
D | normalized_component_storage.h | 93 …static LazyComponentWithNoArgsSet createLazyComponentWithNoArgsSet(size_t capacity, MemoryPool& me… 94 …static LazyComponentWithArgsSet createLazyComponentWithArgsSet(size_t capacity, MemoryPool& memory… 97 … MemoryPool& memory_pool); 99 … MemoryPool& memory_pool); 114 MemoryPool normalized_component_memory_pool; 148 … const std::vector<TypeId, ArenaAllocator<TypeId>>& exposed_types, MemoryPool& memory_pool, 155 … const std::vector<TypeId, ArenaAllocator<TypeId>>& exposed_types, MemoryPool& memory_pool,
|
D | normalized_component_storage.defn.h | 26 NormalizedComponentStorage::createLazyComponentWithNoArgsSet(size_t capacity, MemoryPool& memory_po… in createLazyComponentWithNoArgsSet() 33 NormalizedComponentStorage::createLazyComponentWithArgsSet(size_t capacity, MemoryPool& memory_pool… in createLazyComponentWithArgsSet() 40 NormalizedComponentStorage::createLazyComponentWithNoArgsReplacementMap(size_t capacity, MemoryPool… in createLazyComponentWithNoArgsReplacementMap() 47 NormalizedComponentStorage::createLazyComponentWithArgsReplacementMap(size_t capacity, MemoryPool& … in createLazyComponentWithArgsReplacementMap()
|
D | binding_normalization.templates.h | 37 FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, in BindingNormalizationContext() 38 …MemoryPool& memory_pool_for_fully_expanded_components_maps, MemoryPool& memory_pool_for_component_… in BindingNormalizationContext() 76 MemoryPool& memory_pool, in normalizeBindings() 77 … MemoryPool& memory_pool_for_fully_expanded_components_maps, in normalizeBindings() 78 … MemoryPool& memory_pool_for_component_replacements_maps, in normalizeBindings() 558 …HashMapWithArenaAllocator<TypeId, BindingCompressionInfo>&& compressed_bindings_map, MemoryPool& m… in performBindingCompression() 672 FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, in normalizeBindingsWithBindingCompression() 673 …MemoryPool& memory_pool_for_fully_expanded_components_maps, MemoryPool& memory_pool_for_component_… in normalizeBindingsWithBindingCompression()
|
D | normalized_component_storage_holder.h | 55 MemoryPool& memory_pool, WithUndoableCompression);
|
/external/google-fruit/include/fruit/impl/util/ |
D | hash_helpers.defn.h | 37 inline HashSetWithArenaAllocator<T> createHashSetWithArenaAllocator(size_t capacity, MemoryPool& me… in createHashSetWithArenaAllocator() 43 createHashSetWithArenaAllocatorAndCustomFunctors(size_t capacity, MemoryPool& memory_pool, Hasher h… in createHashSetWithArenaAllocatorAndCustomFunctors() 61 … MemoryPool& memory_pool) { in createHashMapWithArenaAllocator() 68 createHashMapWithArenaAllocatorAndCustomFunctors(size_t capacity, MemoryPool& memory_pool, Hasher h… in createHashMapWithArenaAllocatorAndCustomFunctors()
|
D | hash_helpers.h | 78 HashSetWithArenaAllocator<T> createHashSetWithArenaAllocator(size_t capacity, MemoryPool& memory_po… 82 createHashSetWithArenaAllocatorAndCustomFunctors(size_t capacity, MemoryPool& memory_pool, Hasher, … 91 HashMapWithArenaAllocator<Key, Value> createHashMapWithArenaAllocator(size_t capacity, MemoryPool& … 95 createHashMapWithArenaAllocatorAndCustomFunctors(size_t capacity, MemoryPool& memory_pool, Hasher, …
|
D | type_info.defn.h | 149 std::vector<TypeId, ArenaAllocator<TypeId>> operator()(MemoryPool& memory_pool) { 155 std::vector<TypeId, ArenaAllocator<TypeId>> getTypeIdsForList(MemoryPool& memory_pool) {
|
/external/icu/icu4c/source/common/ |
D | cmemory.h | 685 class MemoryPool : public UMemory { 687 MemoryPool() : count(0), pool() {} in MemoryPool() function 689 ~MemoryPool() { in ~MemoryPool() 695 MemoryPool(const MemoryPool&) = delete; 696 MemoryPool& operator=(const MemoryPool&) = delete; 698 MemoryPool(MemoryPool&& other) U_NOEXCEPT : count(other.count), in MemoryPool() function 703 MemoryPool& operator=(MemoryPool&& other) U_NOEXCEPT {
|
D | uloc_keytype.cpp | 49 static icu::MemoryPool<icu::CharString>* gKeyTypeStringPool = NULL; 50 static icu::MemoryPool<LocExtKeyData>* gLocExtKeyDataEntries = NULL; 51 static icu::MemoryPool<LocExtType>* gLocExtTypeEntries = NULL; 99 gKeyTypeStringPool = new icu::MemoryPool<icu::CharString>; in initFromResourceBundle() 104 gLocExtKeyDataEntries = new icu::MemoryPool<LocExtKeyData>; in initFromResourceBundle() 109 gLocExtTypeEntries = new icu::MemoryPool<LocExtType>; in initFromResourceBundle()
|
/external/google-fruit/include/fruit/impl/ |
D | normalized_component.defn.h | 34 fruit::impl::MemoryPool()) {} in NormalizedComponent() 38 fruit::impl::MemoryPool memory_pool) in NormalizedComponent()
|
/external/google-fruit/src/ |
D | injector_storage.cpp | 70 MemoryPool& memory_pool) in InjectorStorage() 84 MemoryPool& memory_pool) { in InjectorStorage()
|
D | normalized_component_storage.cpp | 45 … MemoryPool& memory_pool, WithPermanentCompression) in NormalizedComponentStorage() 71 … MemoryPool& memory_pool, WithUndoableCompression) in NormalizedComponentStorage()
|
D | binding_normalization.cpp | 275 FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, in normalizeBindingsWithUndoableBindingCompression() 276 …MemoryPool& memory_pool_for_fully_expanded_components_maps, MemoryPool& memory_pool_for_component_… in normalizeBindingsWithUndoableBindingCompression() 315 FixedSizeAllocator::FixedSizeAllocatorData& fixed_size_allocator_data, MemoryPool& memory_pool, in normalizeBindingsWithPermanentBindingCompression() 327 FixedSizeVector<ComponentStorageEntry>&& toplevel_entries, MemoryPool& memory_pool, in normalizeBindingsAndAddTo()
|
D | memory_pool.cpp | 23 void MemoryPool::destroy() { in destroy()
|
D | normalized_component_storage_holder.cpp | 30 MemoryPool& memory_pool, WithUndoableCompression) in NormalizedComponentStorageHolder()
|
/external/icu/icu4c/source/i18n/ |
D | numparse_affixes.h | 57 template class U_I18N_API MemoryPool<numparse::impl::CodePointMatcher, 8>; variable 116 MemoryPool<CodePointMatcher> fCodePoints;
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir.h | 1346 MemoryPool mem_Instruction; 1347 MemoryPool mem_CmpInstruction; 1348 MemoryPool mem_TexInstruction; 1349 MemoryPool mem_FlowInstruction; 1350 MemoryPool mem_LValue; 1351 MemoryPool mem_Symbol; 1352 MemoryPool mem_ImmediateValue;
|
/external/google-fruit/include/fruit/ |
D | normalized_component.h | 123 NormalizedComponent(fruit::impl::ComponentStorage&& storage, fruit::impl::MemoryPool memory_pool);
|