/third_party/skia/third_party/externals/dawn/src/tests/unittests/ |
D | BuddyAllocatorTests.cpp | 31 BuddyAllocator allocator(maxBlockSize); in TEST() local 34 ASSERT_EQ(allocator.Allocate(maxBlockSize * 2), BuddyAllocator::kInvalidOffset); in TEST() 37 ASSERT_EQ(allocator.Allocate(0u), BuddyAllocator::kInvalidOffset); in TEST() 40 uint64_t blockOffset = allocator.Allocate(maxBlockSize); in TEST() 44 ASSERT_EQ(allocator.Allocate(maxBlockSize), BuddyAllocator::kInvalidOffset); in TEST() 45 ASSERT_EQ(allocator.ComputeTotalNumOfFreeBlocksForTesting(), 0u); in TEST() 48 allocator.Deallocate(blockOffset); in TEST() 49 ASSERT_EQ(allocator.ComputeTotalNumOfFreeBlocksForTesting(), 1u); in TEST() 57 BuddyAllocator allocator(maxBlockSize); in TEST() local 61 ASSERT_EQ(allocator.Allocate(blockSize), blockSize * blocki); in TEST() [all …]
|
D | BuddyMemoryAllocatorTests.cpp | 76 DummyBuddyResourceAllocator allocator(maxBlockSize, heapSize); in TEST() local 79 ResourceMemoryAllocation invalidAllocation = allocator.Allocate(heapSize * 2); in TEST() 83 ResourceMemoryAllocation allocation1 = allocator.Allocate(128); in TEST() 87 ASSERT_EQ(allocator.ComputeTotalNumOfHeapsForTesting(), 1u); in TEST() 90 invalidAllocation = allocator.Allocate(128); in TEST() 93 allocator.Deallocate(allocation1); in TEST() 94 ASSERT_EQ(allocator.ComputeTotalNumOfHeapsForTesting(), 0u); in TEST() 109 DummyBuddyResourceAllocator allocator(maxBlockSize, heapSize); in TEST() local 112 ResourceMemoryAllocation invalidAllocation = allocator.Allocate(heapSize * 2); in TEST() 116 invalidAllocation = allocator.Allocate(maxBlockSize * 2); in TEST() [all …]
|
D | RingBufferAllocatorTests.cpp | 26 RingBufferAllocator allocator(sizeInBytes); in TEST() local 29 EXPECT_TRUE(allocator.Empty()); in TEST() 31 ASSERT_EQ(allocator.GetSize(), sizeInBytes); in TEST() 34 ASSERT_EQ(allocator.Allocate(sizeInBytes + 1, ExecutionSerial(0)), in TEST() 38 ASSERT_EQ(allocator.Allocate(sizeInBytes / 2, ExecutionSerial(1)), 0u); in TEST() 39 ASSERT_EQ(allocator.Allocate(sizeInBytes / 2, ExecutionSerial(2)), 32000u); in TEST() 42 ASSERT_EQ(allocator.Allocate(1, ExecutionSerial(3)), RingBufferAllocator::kInvalidOffset); in TEST() 50 RingBufferAllocator allocator(maxNumOfFrames * frameSizeInBytes); in TEST() local 54 offset = allocator.Allocate(frameSizeInBytes, i); in TEST() 64 RingBufferAllocator allocator(maxNumOfFrames * frameSizeInBytes); in TEST() local [all …]
|
D | CommandAllocatorTests.cpp | 59 CommandAllocator allocator; in TEST() local 64 CommandAllocator allocator; in TEST() local 65 CommandIterator iterator(std::move(allocator)); in TEST() 71 CommandAllocator allocator; in TEST() local 79 CommandPipeline* pipeline = allocator.Allocate<CommandPipeline>(CommandType::Pipeline); in TEST() 83 CommandDraw* draw = allocator.Allocate<CommandDraw>(CommandType::Draw); in TEST() 89 CommandIterator iterator(std::move(allocator)); in TEST() 117 CommandAllocator allocator; in TEST() local 125 allocator.Allocate<CommandPushConstants>(CommandType::PushConstants); in TEST() 129 uint32_t* values = allocator.AllocateData<uint32_t>(5); in TEST() [all …]
|
D | SlabAllocatorTests.cpp | 37 SlabAllocator<Foo> allocator(1 * sizeof(Foo)); in TEST() local 39 Foo* obj = allocator.Allocate(4); in TEST() 42 allocator.Deallocate(obj); in TEST() 49 SlabAllocator<Foo> allocator(5 * sizeof(Foo)); in TEST() local 53 auto* ptr = allocator.Allocate(i); in TEST() 68 allocator.Deallocate(object); in TEST() 74 SlabAllocator<AlignedFoo> allocator(9 * sizeof(AlignedFoo)); in TEST() local 78 auto* ptr = allocator.Allocate(i); in TEST() 93 allocator.Deallocate(object); in TEST() 100 SlabAllocator<Foo> allocator(17 * sizeof(Foo)); in TEST() local [all …]
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | nine_memory_helper.c | 307 debug_dump_allocator_state(struct nine_allocator *allocator) in debug_dump_allocator_state() argument 310 DBG("Total allocated: %lld\n", allocator->total_allocations); in debug_dump_allocator_state() 311 DBG("Total virtual memory locked: %lld\n", allocator->total_locked_memory); in debug_dump_allocator_state() 312 …DBG("Virtual memory used: %lld / %lld\n", allocator->total_virtual_memory, allocator->total_virtua… in debug_dump_allocator_state() 313 DBG("Num memfd files: %d / %d\n", allocator->num_fd, allocator->num_fd_max); in debug_dump_allocator_state() 368 static void move_region_ordered_merge(struct nine_allocator *allocator, struct list_head *tail, str… in move_region_ordered_merge() argument 389 slab_free_st(&allocator->region_pool, region); in move_region_ordered_merge() 390 slab_free_st(&allocator->region_pool, cur_region); in move_region_ordered_merge() 394 slab_free_st(&allocator->region_pool, region); in move_region_ordered_merge() 400 slab_free_st(&allocator->region_pool, region); in move_region_ordered_merge() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_suballoc.c | 48 u_suballocator_init(struct u_suballocator *allocator, in u_suballocator_init() argument 54 memset(allocator, 0, sizeof(*allocator)); in u_suballocator_init() 56 allocator->pipe = pipe; in u_suballocator_init() 57 allocator->size = size; in u_suballocator_init() 58 allocator->bind = bind; in u_suballocator_init() 59 allocator->usage = usage; in u_suballocator_init() 60 allocator->flags = flags; in u_suballocator_init() 61 allocator->zero_buffer_memory = zero_buffer_memory; in u_suballocator_init() 65 u_suballocator_destroy(struct u_suballocator *allocator) in u_suballocator_destroy() argument 67 pipe_resource_reference(&allocator->buffer, NULL); in u_suballocator_destroy() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | HandleAllocator_unittest.cpp | 19 gl::HandleAllocator allocator; in TEST() local 29 allocator.reserve(id); in TEST() 35 GLuint handle = allocator.allocate(); in TEST() 44 gl::HandleAllocator allocator; in TEST() local 54 allocator.reserve(randomHandle); in TEST() 61 GLuint normalHandle = allocator.allocate(); in TEST() 96 gl::HandleAllocator allocator; in TEST() local 99 allocator.reserve(maxUintHandle); in TEST() 101 GLuint normalHandle = allocator.allocate(); in TEST() 108 gl::HandleAllocator allocator; in TEST() local [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
D | HistogramWriter.cpp | 91 js::Document::AllocatorType &allocator = doc->GetAllocator(); in getAsJSON() local 99 js::Value name(histogram.name(), allocator); in getAsJSON() 100 obj.AddMember("name", name, allocator); in getAsJSON() 102 js::Value description(histogram.description(), allocator); in getAsJSON() 103 obj.AddMember("description", description, allocator); in getAsJSON() 105 js::Value unitAndDirection(GetUnitAndDirection(histogram.unit()), allocator); in getAsJSON() 106 obj.AddMember("unit", unitAndDirection, allocator); in getAsJSON() 114 js::Value key(mapIter.first, allocator); in getAsJSON() 119 js::Value guid(diagnostic.shared_diagnostic_guid(), allocator); in getAsJSON() 120 diags.AddMember(key, guid, allocator); in getAsJSON() [all …]
|
/third_party/libabigail/tests/data/test-diff-filter/ |
D | test41-report-0.txt | 9 …[D] 'method std::_Deque_base<unsigned int, std::allocator<unsigned int> >::~_Deque_base(int)' {… 10 …allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::al… 11 …allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::al… 12 …[D] 'method void std::deque<unsigned int, std::allocator<unsigned int> >::_M_push_back_aux<unsigne… 22 …::xml_writer::type_ptr_map&, std::vector<abigail::ir::type_base *, std::allocator<abigail::ir::typ… 23 …>, std::allocator<std::tr1::shared_ptr<abigail::ir::function_type> > >&, std::vector<std::tr1::sha… 24 …allocator<std::__cxx11::basic_string<char> > >::_M_create_nodes(std::_Deque_base<std::__cxx11::bas… 25 …allocator<unsigned int> >::_M_create_nodes(std::_Deque_base<unsigned int, std::allocator<unsigned … 27 …allocator<std::__cxx11::basic_string<char> > >::_M_destroy_data_aux(std::deque<std::__cxx11::basic… 28 …har>, std::allocator<std::__cxx11::basic_string<char> > >::_M_push_back_aux(const std::deque<std::… [all …]
|
D | test30-pr18904-rvalueref-report2.txt | 11 …[D] 'method COIRESULT Engine::compute(const std::__cxx11::list<coibuffer*, std::allocator<coibuffe… 103 …ine::compute(_Offload_stream, const std::__cxx11::list<coibuffer*, std::allocator<coibuffer*> >&, … 298 …[A] 'method std::allocator<std::_Rb_tree_node<std::pair<long unsigned int const, Stream*> > > __gn… 299 …const VarTable::Entry* const*, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 300 …allocator<const VarTable::Entry*> > >::__normal_iterator<const VarTable::Entry**>(const __gnu_cxx:… 301 …const VarTable::Entry* const*, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 302 …allocator<const VarTable::Entry*> > >::reference __gnu_cxx::__normal_iterator<const VarTable::Entr… 303 …::allocator<const VarTable::Entry*> > > __gnu_cxx::__normal_iterator<const VarTable::Entry* const*… 304 …rator<const VarTable::Entry**, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 305 …rator<const VarTable::Entry**, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… [all …]
|
D | test30-pr18904-rvalueref-report1.txt | 11 …[D] 'method COIRESULT Engine::compute(const std::__cxx11::list<coibuffer*, std::allocator<coibuffe… 103 …ine::compute(_Offload_stream, const std::__cxx11::list<coibuffer*, std::allocator<coibuffer*> >&, … 298 …[A] 'method std::allocator<std::_Rb_tree_node<std::pair<long unsigned int const, Stream*> > > __gn… 299 …const VarTable::Entry* const*, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 300 …allocator<const VarTable::Entry*> > >::__normal_iterator<const VarTable::Entry**>(const __gnu_cxx:… 301 …const VarTable::Entry* const*, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 302 …allocator<const VarTable::Entry*> > >::reference __gnu_cxx::__normal_iterator<const VarTable::Entr… 303 …::allocator<const VarTable::Entry*> > > __gnu_cxx::__normal_iterator<const VarTable::Entry* const*… 304 …rator<const VarTable::Entry**, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 305 …rator<const VarTable::Entry**, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… [all …]
|
D | test30-pr18904-rvalueref-report0.txt | 11 …[D] 'method COIRESULT Engine::compute(const std::__cxx11::list<coibuffer*, std::allocator<coibuffe… 103 …ine::compute(_Offload_stream, const std::__cxx11::list<coibuffer*, std::allocator<coibuffer*> >&, … 298 …[A] 'method std::allocator<std::_Rb_tree_node<std::pair<long unsigned int const, Stream*> > > __gn… 299 …const VarTable::Entry* const*, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 300 …allocator<const VarTable::Entry*> > >::__normal_iterator<const VarTable::Entry**>(const __gnu_cxx:… 301 …const VarTable::Entry* const*, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 302 …allocator<const VarTable::Entry*> > >::reference __gnu_cxx::__normal_iterator<const VarTable::Entr… 303 …::allocator<const VarTable::Entry*> > > __gnu_cxx::__normal_iterator<const VarTable::Entry* const*… 304 …rator<const VarTable::Entry**, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… 305 …rator<const VarTable::Entry**, std::vector<const VarTable::Entry*, std::allocator<const VarTable::… [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/ |
D | symbols_x86_dbg.def | 11 …allocator@PAPBVImpl@time_zone@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PAPAPBVImpl@… 12 …allocator@PAUCordRep@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PAPAUCordRep@cord_internal… 13 …allocator@PAVCordzHandle@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PAPAVCordzHandle@cord_… 14 …allocator@PBVCordzHandle@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PAPBVCordzHandle@cord_… 15 …allocator@UConversionItem@ParsedFormatBase@str_format_internal@absl@@@__1@std@@@?$__compressed_pai… 16 …allocator@UTransition@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PAUTransition@cctz@t… 17 …allocator@UTransitionType@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PAUTransitionTyp… 18 …allocator@UViableSubstitution@strings_internal@absl@@@__1@std@@@?$__compressed_pair@PAUViableSubst… 19 …@@?$__compressed_pair@PAPAPBVImpl@time_zone@cctz@time_internal@absl@@V?$allocator@PAPBVImpl@time_z… 20 …t_tag@__1@std@@@?$__compressed_pair@PAPAUCordRep@cord_internal@absl@@V?$allocator@PAUCordRep@cord_… [all …]
|
D | symbols_x64_dbg.def | 11 …allocator@PEAPEBVImpl@time_zone@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEAPEBV… 12 …allocator@PEAUCordRep@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEAUCordRep@cord_inter… 13 …allocator@PEAVCordzHandle@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEAVCordzHandle@co… 14 …allocator@PEBVCordzHandle@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEBVCordzHandle@co… 15 …allocator@UConversionItem@ParsedFormatBase@str_format_internal@absl@@@__1@std@@@?$__compressed_pai… 16 …allocator@UTransition@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PEAUTransition@cctz@… 17 …allocator@UTransitionType@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PEAUTransitionTy… 18 …allocator@UViableSubstitution@strings_internal@absl@@@__1@std@@@?$__compressed_pair@PEAUViableSubs… 19 …$__compressed_pair@PEAPEAPEBVImpl@time_zone@cctz@time_internal@absl@@V?$allocator@PEAPEBVImpl@time… 20 …tag@__1@std@@@?$__compressed_pair@PEAPEAUCordRep@cord_internal@absl@@V?$allocator@PEAUCordRep@cord… [all …]
|
D | symbols_arm64_dbg.def | 11 …allocator@PEAPEBVImpl@time_zone@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEAPEBV… 12 …allocator@PEAUCordRep@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEAUCordRep@cord_inter… 13 …allocator@PEAVCordzHandle@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEAVCordzHandle@co… 14 …allocator@PEBVCordzHandle@cord_internal@absl@@@__1@std@@@?$__compressed_pair@PEAPEBVCordzHandle@co… 15 …allocator@UConversionItem@ParsedFormatBase@str_format_internal@absl@@@__1@std@@@?$__compressed_pai… 16 …allocator@UTransition@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PEAUTransition@cctz@… 17 …allocator@UTransitionType@cctz@time_internal@absl@@@__1@std@@@?$__compressed_pair@PEAUTransitionTy… 18 …allocator@UViableSubstitution@strings_internal@absl@@@__1@std@@@?$__compressed_pair@PEAUViableSubs… 19 …$__compressed_pair@PEAPEAPEBVImpl@time_zone@cctz@time_internal@absl@@V?$allocator@PEAPEBVImpl@time… 20 …tag@__1@std@@@?$__compressed_pair@PEAPEAUCordRep@cord_internal@absl@@V?$allocator@PEAUCordRep@cord… [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_mem_alloc_wrapper.cpp | 70 void DestroyAllocator(VmaAllocator allocator) in DestroyAllocator() argument 72 vmaDestroyAllocator(allocator); in DestroyAllocator() 75 VkResult CreatePool(VmaAllocator allocator, in CreatePool() argument 90 return vmaCreatePool(allocator, &poolCreateInfo, pPool); in CreatePool() 93 void DestroyPool(VmaAllocator allocator, VmaPool pool) in DestroyPool() argument 95 vmaDestroyPool(allocator, pool); in DestroyPool() 98 void FreeMemory(VmaAllocator allocator, VmaAllocation allocation) in FreeMemory() argument 100 vmaFreeMemory(allocator, allocation); in FreeMemory() 103 VkResult CreateBuffer(VmaAllocator allocator, in CreateBuffer() argument 119 result = vmaCreateBuffer(allocator, pBufferCreateInfo, &allocationCreateInfo, pBuffer, in CreateBuffer() [all …]
|
D | vk_mem_alloc_wrapper.h | 28 void DestroyAllocator(VmaAllocator allocator); in VK_DEFINE_HANDLE() 30 VkResult CreatePool(VmaAllocator allocator, in VK_DEFINE_HANDLE() 35 void DestroyPool(VmaAllocator allocator, VmaPool pool); in VK_DEFINE_HANDLE() 37 void FreeMemory(VmaAllocator allocator, VmaAllocation allocation); in VK_DEFINE_HANDLE() 39 VkResult CreateBuffer(VmaAllocator allocator, in VK_DEFINE_HANDLE() 48 VkResult FindMemoryTypeIndexForBufferInfo(VmaAllocator allocator, in VK_DEFINE_HANDLE() 55 void GetMemoryTypeProperties(VmaAllocator allocator, in VK_DEFINE_HANDLE() 59 VkResult MapMemory(VmaAllocator allocator, VmaAllocation allocation, void **ppData); in VK_DEFINE_HANDLE() 61 void UnmapMemory(VmaAllocator allocator, VmaAllocation allocation); in VK_DEFINE_HANDLE() 63 void FlushAllocation(VmaAllocator allocator, in VK_DEFINE_HANDLE() [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
D | angle_system_info_tests_main.cpp | 105 js::Document::AllocatorType &allocator = doc.GetAllocator(); in main() local 107 doc.AddMember("activeGPUIndex", info.activeGPUIndex, allocator); in main() 108 doc.AddMember("isOptimus", info.isOptimus, allocator); in main() 109 doc.AddMember("isMacSwitchable", info.isMacSwitchable, allocator); in main() 112 machineManufacturer.SetString(info.machineManufacturer.c_str(), allocator); in main() 113 doc.AddMember("machineManufacturer", machineManufacturer, allocator); in main() 116 machineModelVersion.SetString(info.machineModelVersion.c_str(), allocator); in main() 117 doc.AddMember("machineModelVersion", machineModelVersion, allocator); in main() 127 obj.AddMember("vendorId", gpu.vendorId, allocator); in main() 128 obj.AddMember("deviceId", gpu.deviceId, allocator); in main() [all …]
|
/third_party/skia/tests/ |
D | SkTBlockListTest.cpp | 56 static void check_allocator_helper(SkTBlockList<C, N>* allocator, int cnt, int popCnt, in check_allocator_helper() argument 58 REPORTER_ASSERT(reporter, (0 == cnt) == allocator->empty()); in check_allocator_helper() 59 REPORTER_ASSERT(reporter, cnt == allocator->count()); in check_allocator_helper() 63 for (const C& c : allocator->items()) { in check_allocator_helper() 65 REPORTER_ASSERT(reporter, allocator->item(i).fID == i); in check_allocator_helper() 71 REPORTER_ASSERT(reporter, cnt-1 == allocator->back().fID); in check_allocator_helper() 76 allocator->pop_back(); in check_allocator_helper() 78 check_allocator_helper(allocator, cnt - popCnt, 0, reporter); in check_allocator_helper() 83 static void check_iterator_helper(SkTBlockList<C, N>* allocator, in check_iterator_helper() argument 86 const SkTBlockList<C, N>* cAlloc = allocator; in check_iterator_helper() [all …]
|
/third_party/libabigail/tests/data/test-diff-dwarf-abixml/ |
D | test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt | 6 …eSchemaInternals::Column*, vtkSQLDatabaseSchemaInternals::Column*, std::allocator<vtkSQLDatabaseSc… 14 …'struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >' at stringfwd.h:52:… 17 …type of 'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::_Alloc_hider _M_d… 20 'struct std::allocator<char>' at stringfwd.h:45:1 changed: 25 … parameter 4 of type 'std::allocator<vtkSQLDatabaseSchemaInternals::Column>&' has sub-type changes: 26 …in referenced type 'class std::allocator<vtkSQLDatabaseSchemaInternals::Column>' at allocator.h:87… 32 …aseSchemaInternals::Index*, vtkSQLDatabaseSchemaInternals::Index*, std::allocator<vtkSQLDatabaseSc… 37 type of 'std::vector<vtkStdString, std::allocator<vtkStdString> > ColumnNames' changed: 40 …'struct std::_Vector_base<vtkStdString, std::allocator<vtkStdString> >' at stl_vector.h:70:1 chang… 43 …type of 'std::_Vector_base<vtkStdString, std::allocator<vtkStdString> >::_Vector_impl _M_impl' cha… [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
D | thread_test.cpp | 37 allocator); in TEST_F() 49 allocator); in TEST_F() 57 allocator)) in TEST_F() 58 .add(marl::Thread::Affinity({core(35)}, allocator)); in TEST_F() 78 allocator); in TEST_F() 86 allocator)) in TEST_F() 87 .remove(marl::Thread::Affinity({core(40)}, allocator)); in TEST_F() 95 auto affinity = marl::Thread::Affinity::all(allocator); in TEST_F() 111 allocator); in TEST_F() 114 marl::Thread::Affinity::Policy::oneOf(std::move(all), allocator); in TEST_F() [all …]
|
/third_party/skia/third_party/externals/dawn/src/tests/white_box/ |
D | D3D12DescriptorHeapTests.cpp | 140 ShaderVisibleDescriptorAllocator* allocator = in TEST_P() local 142 const uint64_t heapSize = allocator->GetShaderVisibleHeapSizeForTesting(); in TEST_P() 144 const HeapVersionID heapSerial = allocator->GetShaderVisibleHeapSerialForTesting(); in TEST_P() 168 EXPECT_EQ(allocator->GetShaderVisibleHeapSerialForTesting(), heapSerial + HeapVersionID(1)); in TEST_P() 196 ShaderVisibleDescriptorAllocator* allocator = in TEST_P() local 198 const uint64_t samplerHeapSize = allocator->GetShaderVisibleHeapSizeForTesting(); in TEST_P() 200 const HeapVersionID HeapVersionID = allocator->GetShaderVisibleHeapSerialForTesting(); in TEST_P() 220 EXPECT_EQ(allocator->GetShaderVisibleHeapSerialForTesting(), HeapVersionID); in TEST_P() 229 ShaderVisibleDescriptorAllocator* allocator = in TEST_P() local 232 std::list<ComPtr<ID3D12DescriptorHeap>> heaps = {allocator->GetShaderVisibleHeap()}; in TEST_P() [all …]
|
/third_party/protobuf/ |
D | libprotobuf.map | 5 …romString(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, g… 6 …:Message const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>*)"; 18 …criptorDatabase(std::vector<google::protobuf::DescriptorDatabase*, std::allocator<google::protobuf… 23 …td::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<char, std::char_tr… 24 …TrackFile(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&, b… 25 …ileByName(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&) c… 29 …allocator<char>>, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>>, … 30 …td::char_traits<char>, std::allocator<char>> const&, std::__cxx11::basic_string<char, std::char_tr… 32 …ypeByName(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char>> const&) c… 44 …allocator<char>> const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<c… [all …]
|
/third_party/node/deps/v8/src/heap/cppgc/ |
D | page-memory.cc | 16 void Unprotect(PageAllocator& allocator, FatalOutOfMemoryHandler& oom_handler, in Unprotect() argument 18 if (SupportsCommittingGuardPages(allocator)) { in Unprotect() 19 if (!allocator.SetPermissions(page_memory.writeable_region().base(), in Unprotect() 31 page_memory.overall_region().size() % allocator.CommitPageSize()); in Unprotect() 32 if (!allocator.SetPermissions(page_memory.overall_region().base(), in Unprotect() 40 void Protect(PageAllocator& allocator, FatalOutOfMemoryHandler& oom_handler, in Protect() argument 42 if (SupportsCommittingGuardPages(allocator)) { in Protect() 45 if (!allocator.SetPermissions(page_memory.writeable_region().base(), in Protect() 53 page_memory.overall_region().size() % allocator.CommitPageSize()); in Protect() 54 if (!allocator.SetPermissions(page_memory.overall_region().base(), in Protect() [all …]
|