/external/deqp/external/vulkancts/modules/vulkan/wsi/ |
vktWsiDisplayTimingTests.cpp | 796 const vk::Unique<vk::VkDevice> m_device; member in class:vkt::wsi::__anon18045::DisplayTimingTestInstance 943 , m_device (createDeviceWithWsi(m_vki, m_physicalDevice, m_deviceExtensions, m_queueFamilyIndex, testConfig.useDisplayTiming)) 944 , m_vkd (m_vki, *m_device) 945 , m_queue (getDeviceQueue(m_vkd, *m_device, m_queueFamilyIndex, 0u)) 947 , m_commandPool (createCommandPool(m_vkd, *m_device, m_queueFamilyIndex)) 948 , m_vertexShaderModule (vk::createShaderModule(m_vkd, *m_device, context.getBinaryCollection().get("quad-vert"), 0u)) 949 , m_fragmentShaderModule (vk::createShaderModule(m_vkd, *m_device, context.getBinaryCollection().get("quad-frag"), 0u)) 950 , m_pipelineLayout (createPipelineLayout(m_vkd, *m_device)) 986 m_swapchain = vk::createSwapchainKHR(m_vkd, *m_device, &m_swapchainConfig); 987 m_swapchainImages = vk::wsi::getSwapchainImages(m_vkd, *m_device, *m_swapchain) [all...] |
vktWsiIncrementalPresentTests.cpp | 914 const vk::Unique<vk::VkDevice> m_device; member in class:vkt::wsi::__anon18047::IncrementalPresentTestInstance 1064 , m_device (createDeviceWithWsi(m_vki, m_physicalDevice, m_deviceExtensions, m_queueFamilyIndex, testConfig.useIncrementalPresent)) 1065 , m_vkd (m_vki, *m_device) 1066 , m_queue (getDeviceQueue(m_vkd, *m_device, m_queueFamilyIndex, 0u)) 1068 , m_commandPool (createCommandPool(m_vkd, *m_device, m_queueFamilyIndex)) 1069 , m_vertexShaderModule (vk::createShaderModule(m_vkd, *m_device, context.getBinaryCollection().get("quad-vert"), 0u)) 1070 , m_fragmentShaderModule (vk::createShaderModule(m_vkd, *m_device, context.getBinaryCollection().get("quad-frag"), 0u)) 1071 , m_pipelineLayout (createPipelineLayout(m_vkd, *m_device)) 1107 m_swapchain = vk::createSwapchainKHR(m_vkd, *m_device, &m_swapchainConfigs[m_swapchainConfigNdx]); 1108 m_swapchainImages = vk::wsi::getSwapchainImages(m_vkd, *m_device, *m_swapchain) [all...] |
/external/deqp/external/vulkancts/modules/vulkan/compute/ |
vktComputeShaderBuiltinVarTests.cpp | 133 const VkDevice m_device; member in class:vkt::compute::__anon17667::ComputeBuiltinVarInstance 370 , m_device (m_context.getDevice()) 413 Buffer uniformBuffer(m_vki, m_device, m_context.getDefaultAllocator(), makeBufferCreateInfo(sizeOfUniformBuffer, VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT), MemoryRequirement::HostVisible); 414 Buffer resultBuffer(m_vki, m_device, m_context.getDefaultAllocator(), makeBufferCreateInfo(resultBufferSize, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible); 419 flushMappedMemoryRange(m_vki, m_device, alloc.getMemory(), alloc.getOffset(), sizeOfUniformBuffer); 427 .build(m_vki, m_device)); 429 const Unique<VkShaderModule> shaderModule(createShaderModule(m_vki, m_device, m_context.getBinaryCollection().get(program_name.str()), 0u)); 430 const Unique<VkPipelineLayout> pipelineLayout(makePipelineLayout(m_vki, m_device, *descriptorSetLayout)); 431 const Unique<VkPipeline> pipeline(makeComputePipeline(m_vki, m_device, *pipelineLayout, *shaderModule)); 437 .build(m_vki, m_device, VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, 1u)) [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorConvolution.h | 314 : m_inputImpl(op.inputExpression(), device), m_kernelImpl(op.kernelExpression(), device), m_kernelArg(op.kernelExpression()), m_kernel(NULL), m_local_kernel(false), m_device(device) 385 m_device.deallocate((void*)m_kernel); 524 Scalar* local = (Scalar*)m_device.allocate(kernel_sz); 528 internal::TensorExecutor<const EvalTo, Device, PacketAccess>::run(evalToTmp, m_device); 547 const Device& m_device; member in struct:Eigen::TensorEvaluator 773 : m_inputImpl(op.inputExpression(), device), m_kernelArg(op.kernelExpression()), m_kernelImpl(op.kernelExpression(), device), m_indices(op.indices()), m_buf(NULL), m_kernel(NULL), m_local_kernel(false), m_device(device) 804 m_buf = (Scalar*)m_device.allocate(dimensions().TotalSize() * sizeof(Scalar)); [all...] |
TensorScan.h | 107 m_device(device), 156 return m_device; 168 m_output = static_cast<CoeffReturnType*>(m_device.allocate(total_size * sizeof(Scalar))); 194 m_device.deallocate(m_output); 202 const Device& m_device; member in struct:Eigen::TensorEvaluator
|
TensorFFT.h | 143 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) : m_fft(op.fft()), m_impl(op.expression(), device), m_data(NULL), m_device(device) { 174 m_data = (CoeffReturnType*)m_device.allocate(sizeof(CoeffReturnType) * m_size); 182 m_device.deallocate(m_data); 209 ComplexScalar* buf = write_to_out ? (ComplexScalar*)data : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * m_size); 220 ComplexScalar* line_buf = (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * line_len); 225 ComplexScalar* a = is_power_of_two ? NULL : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * good_composite); 226 ComplexScalar* b = is_power_of_two ? NULL : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * good_composite); 227 ComplexScalar* pos_j_base_powered = is_power_of_two ? NULL : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * (line_len + 1)); 283 m_device.deallocate(line_buf); 285 m_device.deallocate(a) 570 const Device& m_device; member in struct:Eigen::TensorEvaluator [all...] |
TensorReduction.h | 412 : m_impl(op.expression(), device), m_reducer(op.reducer()), m_result(NULL), m_device(device), m_xpr_dims(op.dims()) 488 ((RunningOnGPU && (m_device.majorDeviceVersion() >= 3)) || 492 m_result = static_cast<CoeffReturnType*>(m_device.allocate(sizeof(CoeffReturnType))); 497 internal::FullReducer<Self, Op, Device>::run(*this, reducer, m_device, data); 504 data = static_cast<CoeffReturnType*>(m_device.allocate(sizeof(CoeffReturnType) * num_coeffs_to_preserve)); 508 internal::InnerReducer<Self, Op, Device>::run(*this, reducer, m_device, data, num_values_to_reduce, num_coeffs_to_preserve); 513 else if (RunningOnGPU && (m_device.majorDeviceVersion() >= 3)) { 528 data = static_cast<CoeffReturnType*>(m_device.allocate(sizeof(CoeffReturnType) * num_coeffs_to_preserve)); 536 if (internal::InnerReducer<Self, Op, Device>::run(*this, reducer, m_device, data, num_values_to_reduce, num_coeffs_to_preserve)) { 538 m_device.deallocate(m_result) 775 const Device& m_device; member in struct:Eigen::TensorEvaluator [all...] |
TensorEvalTo.h | 112 : m_impl(op.expression(), device), m_device(device), 168 const Device& device() const{return m_device;} 172 const Device& m_device; member in struct:Eigen::TensorEvaluator
|
TensorContraction.h | 158 m_device(device), 337 m_result = static_cast<Scalar *>(m_device.allocate(dimensions().TotalSize() * sizeof(Scalar))); 416 m_device.memset(buffer, 0, rows * sizeof(Scalar)); 435 this->m_device.memset(buffer, 0, m * n * sizeof(Scalar)); 488 LhsScalar* blockA = static_cast<LhsScalar *>(this->m_device.allocate(sizeA * sizeof(LhsScalar))); 489 RhsScalar* blockB = static_cast<RhsScalar *>(this->m_device.allocate(sizeB * sizeof(RhsScalar))); 512 this->m_device.deallocate(blockA); 513 this->m_device.deallocate(blockB); 521 m_device.deallocate(m_result); 565 const Device& m_device; member in struct:Eigen::TensorContractionEvaluatorBase [all...] |
TensorEvaluator.h | 49 : m_data(const_cast<typename internal::traits<Derived>::template MakePointer<Scalar>::Type>(m.data())), m_dims(m.dimensions()), m_device(device), m_impl(m) 58 m_device.memcpy((void*)dest, m_data, sizeof(Scalar) * m_dims.TotalSize()); 114 const Device& device() const{return m_device;} 119 const Device& m_device; member in struct:Eigen::TensorEvaluator 172 : m_data(m.data()), m_dims(m.dimensions()), m_device(device), m_impl(m) 179 m_device.memcpy((void*)data, m_data, m_dims.TotalSize() * sizeof(Scalar)); 213 const Device& device() const{return m_device;} 218 const Device& m_device; member in struct:Eigen::TensorEvaluator
|
TensorContractionThreadPool.h | 206 static_cast<double>(n) * m, cost, this->m_device.numThreads()); 292 OutputMapper>(this->m_device, num_threads, lhs, rhs, buffer, m, n, 754 this->m_device.memset(buffer, 0, m * n * sizeof(Scalar)); [all...] |
TensorMorphing.h | 322 : m_impl(op.expression(), device), m_device(device), m_dimensions(op.sizes()), m_offsets(op.startIndices()) 386 const MemcpyTriggerForSlicing<Index, Device> trigger(m_device); 391 m_device.memcpy((void*)(data+i), src+offset, contiguous_values * sizeof(Scalar)); 523 const Device& m_device; member in struct:Eigen::TensorEvaluator 709 : m_impl(op.expression(), device), m_device(device), m_strides(op.strides()) 842 const Device& m_device; member in struct:Eigen::TensorEvaluator [all...] |
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
vktDrawImageObjectUtil.cpp | 160 , m_device(device) 303 stagingResource = Buffer::createAndAlloc(m_vk, m_device, stagingBufferResourceCreateInfo, allocator, vk::MemoryRequirement::HostVisible); 308 vk::Unique<vk::VkCommandPool> copyCmdPool(vk::createCommandPool(m_vk, m_device, ©CmdPoolCreateInfo)); 309 vk::Unique<vk::VkCommandBuffer> copyCmdBuffer(vk::allocateCommandBuffer(m_vk, m_device, *copyCmdPool, vk::VK_COMMAND_BUFFER_LEVEL_PRIMARY)); 372 invalidateMappedMemoryRange(m_vk, m_device, bufAllocation.getMemory(), bufAllocation.getOffset(), VK_WHOLE_SIZE); 408 m_vk.getImageSubresourceLayout(m_device, object(), &imageSubResource, &imageLayout); 438 stagingResource = Image::createAndAlloc(m_vk, m_device, stagingResourceCreateInfo, allocator, 443 vk::Unique<vk::VkCommandPool> copyCmdPool(vk::createCommandPool(m_vk, m_device, ©CmdPoolCreateInfo)); 444 vk::Unique<vk::VkCommandBuffer> copyCmdBuffer(vk::allocateCommandBuffer(m_vk, m_device, *copyCmdPool, vk::VK_COMMAND_BUFFER_LEVEL_PRIMARY)); 476 invalidateMappedMemoryRange(m_vk, m_device, imgAllocation.getMemory(), imgAllocation.getOffset(), VK_WHOLE_SIZE) [all...] |
vktDrawBufferObjectUtil.cpp | 38 , m_device (device) 45 VK_CHECK(m_vk.bindBufferMemory(m_device, *m_object, allocation->getMemory(), allocation->getOffset()));
|
vktDrawBufferObjectUtil.hpp | 65 vk::VkDevice m_device; member in class:vkt::Draw::Buffer
|
/prebuilts/ndk/r16/sources/third_party/vulkan/src/include/vulkan/ |
vulkan.hpp | 17155 VkDevice m_device; member in class:vk::vk::ImageLayout::AttachmentLoadOp::AttachmentStoreOp::ImageType::ImageTiling::ImageViewType::CommandBufferLevel::ComponentSwizzle::DescriptorType::QueryType::BorderColor::PipelineBindPoint::PipelineCacheHeaderVersion::PrimitiveTopology::SharingMode::IndexType::Filter::SamplerMipmapMode::SamplerAddressMode::CompareOp::PolygonMode::CullModeFlagBits::FrontFace::BlendFactor::BlendOp::StencilOp::LogicOp::InternalAllocationType::SystemAllocationScope::PhysicalDeviceType::VertexInputRate::Format::StructureType::SubpassContents::SubpassContents::DynamicState::QueueFlagBits::MemoryPropertyFlagBits::MemoryHeapFlagBits::AccessFlagBits::BufferUsageFlagBits::BufferCreateFlagBits::ShaderStageFlagBits::ImageUsageFlagBits::ImageCreateFlagBits::PipelineCreateFlagBits::ColorComponentFlagBits::FenceCreateFlagBits::FormatFeatureFlagBits::QueryControlFlagBits::QueryResultFlagBits::CommandBufferUsageFlagBits::QueryPipelineStatisticFlagBits::ImageAspectFlagBits::SparseImageFormatFlagBits::SparseMemoryBindFlagBits::PipelineStageFlagBits::CommandPoolCreateFlagBits::CommandPoolResetFlagBits::CommandBufferResetFlagBits::SampleCountFlagBits::AttachmentDescriptionFlagBits::StencilFaceFlagBits::DescriptorPoolCreateFlagBits::DependencyFlagBits::PresentModeKHR::ColorSpaceKHR::DisplayPlaneAlphaFlagBitsKHR::CompositeAlphaFlagBitsKHR::SurfaceTransformFlagBitsKHR::DebugReportFlagBitsEXT::DebugReportObjectTypeEXT::DebugReportErrorEXT::RasterizationOrderAMD::ExternalMemoryHandleTypeFlagBitsNV::Device::RasterizationOrderAMD::ExternalMemoryHandleTypeFlagBitsNV::Device [all...] |
/external/deqp/external/vulkancts/modules/vulkan/binding_model/ |
vktBindingShaderAccessTests.cpp | 502 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::SingleTargetRenderInstance 522 , m_device (context.getDevice()) 527 , m_colorAttachmentImage (createColorAttachment(m_vki, m_device, m_allocator, m_targetFormat, m_targetSize, &m_colorAttachmentMemory)) 528 , m_colorAttachmentView (createColorAttachmentView(m_vki, m_device, m_targetFormat, *m_colorAttachmentImage)) 529 , m_renderPass (createRenderPass(m_vki, m_device, m_targetFormat)) 530 , m_framebuffer (createFramebuffer(m_vki, m_device, *m_renderPass, *m_colorAttachmentView, m_targetSize)) 531 , m_cmdPool (createCommandPool(m_vki, m_device, context.getUniversalQueueFamilyIndex())) 693 const vk::Unique<vk::VkBuffer> buffer (vk::createBuffer(m_vki, m_device, &bufferCreateInfo)); 751 const de::MovePtr<vk::Allocation> bufferMemory = allocateAndBindObjectMemory(m_vki, m_device, m_allocator, *buffer, vk::MemoryRequirement::HostVisible); 753 const vk::Unique<vk::VkCommandBuffer> cmd (vk::allocateCommandBuffer(m_vki, m_device, *m_cmdPool, vk::VK_COMMAND_BUFFER_LEVEL_PRIMARY)) 1859 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::ComputeInstanceResultBuffer 2036 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::ComputeCommand 2271 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::BufferComputeInstance 4322 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::ImageFetchComputeInstance 5735 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::ImageSampleComputeInstance 7325 const vk::VkDevice m_device; member in class:vkt::BindingModel::__anon17636::TexelBufferComputeInstance [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiImageClearingTests.cpp | 511 const VkDevice m_device; member in class:vkt::api::__anon17623::ImageClearingTestInstance 538 , m_device (context.getDevice()) 668 de::MovePtr<Allocation> imageMemory (allocateImage(m_vki, m_vkd, m_context.getPhysicalDevice(), m_device, image, MemoryRequirement::Any, m_allocator, m_params.allocationKind)); 669 VK_CHECK(m_vkd.bindImageMemory(m_device, image, imageMemory->getMemory(), imageMemory->getOffset())); 675 return vk::createCommandPool(m_vkd, m_device, commandPoolCreateFlags, m_queueFamilyIndex); 680 return vk::allocateCommandBuffer(m_vkd, m_device, commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY); 704 return vk::createImage(m_vkd, m_device, &imageCreateInfo, DE_NULL); 732 return vk::createImageView(m_vkd, m_device, &imageViewCreateInfo, DE_NULL); 812 return vk::createRenderPass(m_vkd, m_device, &renderPassCreateInfo, DE_NULL); 835 return createFramebuffer(m_vkd, m_device, &framebufferCreateInfo, DE_NULL) [all...] |
vktApiComputeInstanceResultBuffer.hpp | 69 const vk::VkDevice m_device; member in class:vkt::api::ComputeInstanceResultBuffer
|
vktApiCommandBuffersTests.cpp | 69 const VkDevice m_device; member in class:vkt::api::__anon17601::CommandBufferBareTestEnvironment 85 , m_device (context.getDevice()) 91 m_commandPool = createCommandPool(m_vkd, m_device, commandPoolCreateFlags, m_queueFamilyIndex); 102 VK_CHECK(m_vkd.allocateCommandBuffers(m_device, &cmdBufferAllocateInfo, m_primaryCommandBuffers)); 211 m_renderPass = createRenderPass(m_vkd, m_device, &renderPassCreateInfo, DE_NULL); 236 m_colorImage = createImage(m_vkd, m_device, &imageCreateInfo, DE_NULL); 239 m_colorImageMemory = m_allocator.allocate(getImageMemoryRequirements(m_vkd, m_device, *m_colorImage), MemoryRequirement::Any); 240 VK_CHECK(m_vkd.bindImageMemory(m_device, *m_colorImage, m_colorImageMemory->getMemory(), m_colorImageMemory->getOffset())); 266 m_colorImageView = createImageView(m_vkd, m_device, &imageViewCreateInfo, DE_NULL); 288 m_frameBuffer = createFramebuffer(m_vkd, m_device, &framebufferCreateInfo, DE_NULL) [all...] |
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
vktProtectedMemContext.hpp | 56 vk::VkDevice getDevice (void) const { return *m_device; } 87 vk::Move<vk::VkDevice> m_device; member in class:vkt::ProtectedMem::ProtectedContext
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
vktSynchronizationWin32KeyedMutexTests.cpp | 126 const vk::VkDevice m_device; member in class:vkt::synchronization::__anon17967::SimpleAllocation 134 , m_device (device) 140 m_vkd.freeMemory(m_device, getMemory(), DE_NULL); 1417 const vk::Unique<vk::VkDevice> m_device; member in class:vkt::synchronization::__anon17967::Win32KeyedMutexTestInstance [all...] |
vktSynchronizationOperation.hpp | 135 vk::VkDevice getDevice (void) const { return m_device; } 147 const vk::VkDevice m_device; member in class:vkt::synchronization::OperationContext
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkNullDriver.cpp | 510 : m_device(device) 518 const VkDevice m_device; member in class:vk::__anon17593::CommandPool 531 CommandBuffer* const impl = new CommandBuffer(m_device, VkCommandPool(reinterpret_cast<deUintptr>(this)), level); 574 : m_device (device) 588 const VkDevice m_device; member in class:vk::__anon17593::DescriptorPool 596 DescriptorSet* const impl = new DescriptorSet(m_device, VkDescriptorPool(reinterpret_cast<deUintptr>(this)), setLayout); [all...] |
vkMemUtil.hpp | 134 const VkDevice m_device; member in class:vk::SimpleAllocator
|