/external/deqp/external/vulkancts/framework/vulkan/ |
vkRef.hpp | 80 , m_allocator (allocator) 85 , m_allocator (DE_NULL) 93 const VkAllocationCallbacks* m_allocator; member in class:vk::refdetails::Deleter 102 , m_allocator (allocator) 106 , m_allocator (DE_NULL) 109 void operator() (VkInstance obj) const { m_destroyInstance(obj, m_allocator); } 113 const VkAllocationCallbacks* m_allocator; member in class:vk::refdetails::Deleter 124 m_allocator = allocator; 128 , m_allocator (DE_NULL) 131 void operator() (VkDevice obj) const { m_destroyDevice(obj, m_allocator); } 135 const VkAllocationCallbacks* m_allocator; member in class:vk::refdetails::Deleter 158 const VkAllocationCallbacks* m_allocator; member in class:vk::refdetails::Deleter 181 const VkAllocationCallbacks* m_allocator; member in class:vk::refdetails::Deleter [all...] |
vkRefUtilImpl.inl | 10 m_deviceIface->freeMemory(m_device, obj, m_allocator); 16 m_deviceIface->destroyFence(m_device, obj, m_allocator); 22 m_deviceIface->destroySemaphore(m_device, obj, m_allocator); 28 m_deviceIface->destroyEvent(m_device, obj, m_allocator); 34 m_deviceIface->destroyQueryPool(m_device, obj, m_allocator); 40 m_deviceIface->destroyBuffer(m_device, obj, m_allocator); 46 m_deviceIface->destroyBufferView(m_device, obj, m_allocator); 52 m_deviceIface->destroyImage(m_device, obj, m_allocator); 58 m_deviceIface->destroyImageView(m_device, obj, m_allocator); 64 m_deviceIface->destroyShaderModule(m_device, obj, m_allocator); [all...] |
/external/deqp/modules/egl/ |
teglMemoryStressTests.cpp | 335 MemoryAllocator* m_allocator; member in class:deqp::egl::MemoryStressCase 347 , m_allocator (NULL) 382 delete m_allocator; 383 m_allocator = DE_NULL; 400 if (!m_allocator) 401 m_allocator = new MemoryAllocator(m_eglTestCtx, m_display, m_config, m_seed, m_spec.types, m_spec.minWidth, m_spec.minHeight, m_spec.maxWidth, m_spec.maxHeight, m_spec.use); 403 if (m_allocator->allocateUntilFailure()) 405 log << TestLog::Message << "Couldn't exhaust memory before timeout. Allocated " << m_allocator->getAllocationCount() << " objects." << TestLog::EndMessage; 408 delete m_allocator; 409 m_allocator = NULL [all...] |
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
vktSparseResourcesBase.hpp | 81 vk::Allocator& getAllocator (void) { return *m_allocator; } 92 de::MovePtr<vk::Allocator> m_allocator; member in class:vkt::sparse::SparseResourcesBaseInstance
|
vktSparseResourcesBase.cpp | 193 m_allocator = de::MovePtr<Allocator>(new SimpleAllocator(*m_deviceDriver, *m_logicalDevice, getPhysicalDeviceMemoryProperties(instanceDriver, physicalDevice)));
|
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
vktProtectedMemContext.cpp | 41 , m_allocator (createAllocator()) 61 , m_allocator (createAllocator())
|
vktProtectedMemContext.hpp | 64 vk::Allocator& getDefaultAllocator (void) const { return *m_allocator; } 89 const de::UniquePtr<vk::Allocator> m_allocator; member in class:vkt::ProtectedMem::ProtectedContext
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
arena.h | 371 TArena(T& in_allocator) : m_allocator(in_allocator) {} 372 TArena() : m_allocator(m_defAllocator) {} 409 ArenaBlock* pNewBlock = m_allocator.AllocateAligned(blockSize, ARENA_BLOCK_ALIGN); // Arena blocks are always simd byte aligned. 463 m_allocator.Free(pBlock); 468 m_allocator.Free(m_pCurBlock); 488 T& m_allocator;
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelinePushDescriptorTests.cpp | 233 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorBufferGraphicsTestInstance 268 , m_allocator (m_vkd, *m_device, getPhysicalDeviceMemoryProperties(m_vki, m_physicalDevice)) 304 m_colorImageAlloc = m_allocator.allocate(getImageMemoryRequirements(m_vkd, *m_device, *m_colorImage), MemoryRequirement::Any); 408 m_bufferAllocs.push_back(AllocationSp(m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, **m_buffers[bufIdx]), MemoryRequirement::HostVisible).release())); 495 m_vertexBufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, *m_vertexBuffer), MemoryRequirement::HostVisible); 585 de::MovePtr<tcu::TextureLevel> result = readColorAttachment(m_vkd, *m_device, m_queue, m_queueFamilyIndex, m_allocator, *m_colorImage, m_colorFormat, m_renderSize); 693 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorBufferComputeTestInstance 720 , m_allocator (m_vkd, *m_device, getPhysicalDeviceMemoryProperties(m_vki, m_physicalDevice)) 808 m_bufferAllocs.push_back(AllocationSp(m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, **m_buffers[bufIdx]), MemoryRequirement::HostVisible).release())); 1032 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorImageGraphicsTestInstance 1883 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorImageComputeTestInstance 2644 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorTexelBufferGraphicsTestInstance 3129 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorTexelBufferComputeTestInstance 3493 SimpleAllocator m_allocator; member in class:vkt::pipeline::__anon19013::PushDescriptorInputAttachmentGraphicsTestInstance [all...] |
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
vktSynchronizationOperation.hpp | 136 vk::Allocator& getAllocator (void) const { return m_allocator; } 148 vk::Allocator& m_allocator; member in class:vkt::synchronization::OperationContext
|
vktSynchronizationOperationMultiQueueTests.cpp | 139 m_allocator = MovePtr<Allocator>(new SimpleAllocator(*m_deviceDriver, *m_logicalDevice, getPhysicalDeviceMemoryProperties(instance, physicalDevice))); 215 return *m_allocator; 221 MovePtr<Allocator> m_allocator; member in class:vkt::synchronization::__anon19240::MultiQueues
|
vktSynchronizationInternallySynchronizedObjectsTests.cpp | 156 MovePtr<Allocator> m_allocator; member in class:vkt::synchronization::__anon19237::MultiQueues 272 queues.m_allocator = createAllocator(context, queues.getDevice()); 290 Buffer resultBuffer (vk, device, *queues.m_allocator, makeBufferCreateInfo(BUFFER_SIZE, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible); 365 Buffer resultBuffer (vk, device, *queues.m_allocator, makeBufferCreateInfo(BUFFER_SIZE, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible); 370 de::MovePtr<Image> colorAttachmentImage = de::MovePtr<Image>(new Image(vk, device, *queues.m_allocator, 624 Buffer resultBuffer (vk, device, *queues->m_allocator, makeBufferCreateInfo(BUFFER_SIZE, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible); [all...] |
vktSynchronizationOperation.cpp | [all...] |
/external/deqp/external/vulkancts/modules/vulkan/ |
vktTestCase.hpp | 120 const de::UniquePtr<vk::Allocator> m_allocator; member in class:vkt::Context
|
vktTestCase.cpp | 602 , m_allocator (createAllocator(m_device.get())) 663 vk::Allocator& Context::getDefaultAllocator (void) const { return *m_allocator; } [all...] |
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
vktComputeIndirectComputeDispatchTests.cpp | 153 vk::Allocator& m_allocator; member in class:vkt::compute::__anon18884::IndirectDispatchInstanceBufferUpload 175 , m_allocator (context.getDefaultAllocator()) 224 m_device_interface, m_device, m_allocator, 276 m_device_interface, m_device, m_allocator,
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
vktMemoryExternalMemoryHostTests.cpp | 94 Allocator& m_allocator; member in class:vkt::memory::__anon18957::ExternalMemoryHostBaseTestInstance 169 , m_allocator (m_context.getDefaultAllocator()) 486 m_vertexBufferAllocation = m_allocator.allocate(bufferMemoryRequirements, MemoryRequirement::HostVisible); 518 m_resultBufferAllocation = m_allocator.allocate(bufferMemoryRequirements, MemoryRequirement::HostVisible); [all...] |
/external/deqp/external/vulkancts/modules/vulkan/image/ |
vktImageMutableTests.cpp | 933 m_allocator(context.getDeviceInterface(), device, 967 SimpleAllocator m_allocator; member in class:vkt::image::UploadDownloadExecutor [all...] |
/external/deqp/external/vulkancts/modules/vulkan/multiview/ |
vktMultiViewRenderTests.cpp | 298 MovePtr<Allocator> m_allocator; member in class:vkt::MultiView::__anon18978::MultiViewRenderTestInstance 343 m_colorAttachment = de::SharedPtr<ImageAttachment>(new ImageAttachment(*m_logicalDevice, *m_device, *m_allocator, m_parameters.extent, m_parameters.colorFormat, m_parameters.samples)); 586 m_vertexCoordAlloc = m_allocator->allocate(getBufferMemoryRequirements(*m_device, *m_logicalDevice, *m_vertexCoordBuffer), MemoryRequirement::HostVisible); 600 m_vertexColorAlloc = m_allocator->allocate(getBufferMemoryRequirements(*m_device, *m_logicalDevice, *m_vertexColorBuffer), MemoryRequirement::HostVisible); 617 m_vertexIndicesAllocation = m_allocator->allocate(getBufferMemoryRequirements(*m_device, *m_logicalDevice, *m_vertexIndicesBuffer), MemoryRequirement::HostVisible); [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiImageClearingTests.cpp | 518 Allocator& m_allocator; member in class:vkt::api::__anon18853::ImageClearingTestInstance 545 , m_allocator (context.getDefaultAllocator()) 672 de::MovePtr<Allocation> imageMemory (allocateImage(m_vki, m_vkd, m_context.getPhysicalDevice(), m_device, image, MemoryRequirement::Any, m_allocator, m_params.allocationKind)); [all...] |
vktApiCommandBuffersTests.cpp | 76 Allocator& m_allocator; member in class:vkt::api::__anon18828::CommandBufferBareTestEnvironment 92 , m_allocator (context.getDefaultAllocator()) 187 m_colorImageMemory = m_allocator.allocate(getImageMemoryRequirements(m_vkd, m_device, *m_colorImage), MemoryRequirement::Any); 318 bufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, m_device, *buffer), MemoryRequirement::HostVisible); [all...] |
/external/deqp/external/vulkancts/modules/vulkan/binding_model/ |
vktBindingShaderAccessTests.cpp | 507 vk::Allocator& m_allocator; member in class:vkt::BindingModel::__anon18876::SingleTargetRenderInstance 527 , m_allocator (context.getDefaultAllocator()) 529 , m_colorAttachmentImage (createColorAttachment(m_vki, m_device, m_allocator, m_targetFormat, m_targetSize, &m_colorAttachmentMemory)) 642 const de::MovePtr<vk::Allocation> bufferMemory = allocateAndBindObjectMemory(m_vki, m_device, m_allocator, *buffer, vk::MemoryRequirement::HostVisible); [all...] |