HomeSort by relevance Sort by last modified time
    Searched refs:m_device (Results 1 - 25 of 66) sorted by null

1 2 3

  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
layer_validation_tests.cpp 439 VkConstantBufferObj constantBuffer(m_device, bufSize * 2, sizeof(float), (const void *)&data,
442 VkShaderObj vs(m_device, vertShaderText, VK_SHADER_STAGE_VERTEX_BIT, this);
443 VkShaderObj ps(m_device, fragShaderText, VK_SHADER_STAGE_FRAGMENT_BIT, this);
445 VkPipelineObj pipelineobj(m_device);
492 VkDescriptorSetObj descriptorSet(m_device);
    [all...]
vkrenderframework.h 62 VkDevice device() { return m_device->device(); }
87 VkDeviceObj *m_device; member in class:VkRenderFramework
191 VkDeviceObj *m_device; member in class:VkCommandBufferObj
216 VkDeviceObj *m_device; member in class:VkConstantBufferObj
289 m_targetView.init(*m_device, createView);
300 VkDeviceObj *device() const { return m_device; }
303 VkDeviceObj *m_device; member in class:VkImageObj
316 VkDeviceObj *m_device; member in class:VkTextureObj
330 VkDeviceObj *m_device; member in class:VkDepthStencilObj
342 VkDeviceObj *m_device; member in class:VkSamplerObj
360 VkDeviceObj *m_device; member in class:VkDescriptorSetObj
383 VkDeviceObj *m_device; member in class:VkShaderObj
423 VkDeviceObj *m_device; member in class:VkPipelineObj
    [all...]
vkrenderframework.cpp 70 : inst(VK_NULL_HANDLE), m_device(NULL), m_commandPool(VK_NULL_HANDLE), m_commandBuffer(NULL), m_renderPass(VK_NULL_HANDLE),
187 delete m_device;
195 m_device = new VkDeviceObj(0, objs[0], device_extension_names, features);
196 m_device->get_device_queue();
198 m_depthStencil = new VkDepthStencilObj(m_device);
200 m_render_target_fmt = VkTestFramework::GetFormat(inst, m_device);
222 cmd_pool_info.queueFamilyIndex = m_device->graphics_queue_node_index_;
226 m_commandBuffer = new VkCommandBufferObj(m_device, m_commandPool);
292 VkImageObj *img = new VkImageObj(m_device);
296 vkGetPhysicalDeviceFormatProperties(m_device->phy().handle(), m_render_target_fmt, &props)
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDevice.h 29 TensorDevice(const DeviceType& device, ExpressionType& expression) : m_device(device), m_expression(expression) {}
35 internal::TensorExecutor<const Assign, DeviceType>::run(assign, m_device);
46 internal::TensorExecutor<const Assign, DeviceType>::run(assign, m_device);
57 internal::TensorExecutor<const Assign, DeviceType>::run(assign, m_device);
62 const DeviceType& m_device; member in class:Eigen::TensorDevice
TensorForcedEval.h 111 : m_impl(op.expression(), device), m_op(op.expression()), m_device(device), m_buffer(NULL)
118 m_buffer = (CoeffReturnType*)m_device.allocate(numValues * sizeof(CoeffReturnType));
128 internal::TensorExecutor<const EvalTo, typename internal::remove_const<Device>::type, PacketAccess>::run(evalToTmp, m_device);
132 m_device.deallocate(m_buffer);
156 const Device& device() const{return m_device;}
160 const Device& m_device; member in struct:Eigen::TensorEvaluator
  /external/vulkan-validation-layers/tests/
layer_validation_tests.cpp 528 ASSERT_TRUE(m_device && m_device->initialized()); // VKTriangleTest assumes Init() has finished
532 VkShaderObj vs(m_device, bindStateVertShaderText, VK_SHADER_STAGE_VERTEX_BIT, this);
533 VkShaderObj ps(m_device, bindStateFragShaderText, VK_SHADER_STAGE_FRAGMENT_BIT, this);
535 VkPipelineObj pipelineobj(m_device);
607 VkDescriptorSetObj descriptorSet(m_device);
614 m_depthStencil->Init(m_device, static_cast<uint32_t>(m_width), static_cast<uint32_t>(m_height), m_depth_stencil_fmt,
    [all...]
vkrenderframework.cpp 36 m_device(NULL),
251 delete m_device;
257 if (NULL == m_device) {
262 *features = m_device->phy().features();
288 m_device = new VkDeviceObj(0, objs[0], m_device_extension_names, features);
289 m_device->get_device_queue();
291 m_depthStencil = new VkDepthStencilObj(m_device);
293 m_render_target_fmt = VkTestFramework::GetFormat(inst, m_device);
313 m_commandPool = new VkCommandPoolObj(m_device, m_device->graphics_queue_node_index_, flags)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemContext.cpp 40 , m_device (makeProtectedMemDevice(m_vki, m_phyDevice, m_queueFamilyIndex, ctx.getUsedApiVersion(), deviceExtensions))
42 , m_deviceDriver (m_vki, *m_device)
43 , m_queue (getProtectedQueue(m_deviceDriver, *m_device, m_queueFamilyIndex, 0))
60 , m_device (makeProtectedMemDevice(m_vki, m_phyDevice, m_queueFamilyIndex, ctx.getUsedApiVersion(), deviceExtensions))
62 , m_deviceDriver (m_vki, *m_device)
63 , m_queue (getProtectedQueue(m_deviceDriver, *m_device, m_queueFamilyIndex, 0))
  /external/rmi4utils/rmi4update/
rmi4update.cpp 99 rc = m_device.QueryBasicProperties();
104 if (m_firmwareImage.GetFirmwareID() <= m_device.GetFirmwareID()) {
106 m_firmwareImage.GetFirmwareID(), m_device.GetFirmwareID());
113 m_device.PrintProperties();
165 rc = m_device.Write(m_f34StatusAddr, &eraseAll, 1);
210 m_device.Reset();
211 m_device.RebindDriver();
221 rc = m_device.Write(m_f01.GetControlBase() + 1, &interruptEnabeMask, 1);
230 if (0 > m_device.ScanPDT())
233 if (!m_device.GetFunction(m_f01, 0x01)
    [all...]
rmi4update.h 29 RMI4Update(RMIDevice & device, FirmwareImage & firmwareImage) : m_device(device),
47 RMIDevice & m_device; member in class:RMI4Update
  /external/deqp/external/vulkancts/modules/vulkan/multiview/
vktMultiViewRenderTests.cpp 158 MovePtr<DeviceInterface> m_device; member in class:vkt::MultiView::__anon17737::MultiViewRenderTestInstance
184 m_colorAttachment = de::SharedPtr<ImageAttachment>(new ImageAttachment(*m_logicalDevice, *m_device, *m_allocator, m_parameters.extent, m_colorFormat));
192 Unique<VkRenderPass> renderPass (makeRenderPass (*m_device, *m_logicalDevice, m_colorFormat, m_parameters.viewMasks));
196 Unique<VkFramebuffer> frameBuffer (makeFramebuffer(*m_device, *m_logicalDevice, *renderPass, attachments, m_parameters.extent.width, m_parameters.extent.height, 1u));
199 Unique<VkPipelineLayout> pipelineLayout (makePipelineLayout(*m_device, *m_logicalDevice));
241 imageBarrier(*m_device, *m_cmdBuffer, m_colorAttachment->getImage(), subresourceRange, VK_IMAGE_LAYOUT_UNDEFINED, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 0, VK_ACCESS_TRANSFER_WRITE_BIT);
244 m_device->cmdClearColorImage(*m_cmdBuffer, m_colorAttachment->getImage(), VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, &renderPassClearValue.color, 1, &subresourceRange);
246 imageBarrier(*m_device, *m_cmdBuffer, m_colorAttachment->getImage(), subresourceRange, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, VK_ACCESS_TRANSFER_WRITE_BIT, VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT);
261 imageBarrier(*m_device, *m_cmdBuffer, m_colorAttachment->getImage(),
283 beginCommandBuffer(*m_device, *m_cmdBuffer)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiComputeInstanceResultBuffer.cpp 39 m_device(device),
41 m_buffer(createResultBuffer(m_vki, m_device, allocator, &m_bufferMem, initValue)),
48 invalidateMappedMemoryRange(m_vki, m_device, m_bufferMem->getMemory(), m_bufferMem->getOffset(), sizeof(*results));
54 invalidateMappedMemoryRange(m_vki, m_device, m_bufferMem->getMemory(), m_bufferMem->getOffset(), sizeof(*result));
vktApiComputeInstanceResultBuffer.hpp 69 const vk::VkDevice m_device; member in class:vkt::api::ComputeInstanceResultBuffer
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCase.cpp 344 VkDevice getDevice (void) const { return *m_device; }
374 const Unique<VkDevice> m_device; member in class:vkt::DefaultDevice
395 , m_device (createDefaultDevice(m_instanceInterface, m_physicalDevice, m_usedApiVersion, m_universalQueueFamilyIndex, m_deviceFeatures.coreFeatures, m_deviceExtensions, cmdLine))
396 , m_deviceInterface (m_instanceInterface, *m_device)
407 return getDeviceQueue(m_deviceInterface, *m_device, m_universalQueueFamilyIndex, 0);
428 , m_device (new DefaultDevice(m_platformInterface, testCtx.getCommandLine()))
429 , m_allocator (createAllocator(m_device.get()))
437 deUint32 Context::getAvailableInstanceVersion (void) const { return m_device->getAvailableInstanceVersion(); }
438 const vector<string>& Context::getInstanceExtensions (void) const { return m_device->getInstanceExtensions(); }
439 vk::VkInstance Context::getInstance (void) const { return m_device->getInstance();
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/robustness/
vktRobustnessVertexAccessTests.cpp 148 Move<VkDevice> m_device; member in class:vkt::robustness::VertexAccessInstance
433 , m_device (device)
442 SimpleAllocator memAlloc (vk, *m_device, getPhysicalDeviceMemoryProperties(m_context.getInstanceInterface(), m_context.getPhysicalDevice()));
524 m_vertexRateBuffer = createBuffer(vk, *m_device, &vertexRateBufferParams);
525 bufferMemoryReqs = getBufferMemoryRequirements(vk, *m_device, *m_vertexRateBuffer);
529 VK_CHECK(vk.bindBufferMemory(*m_device, *m_vertexRateBuffer, m_vertexRateBufferAlloc->getMemory(), m_vertexRateBufferAlloc->getOffset()));
531 flushMappedMemoryRange(vk, *m_device, m_vertexRateBufferAlloc->getMemory(), m_vertexRateBufferAlloc->getOffset(), VK_WHOLE_SIZE);
552 m_instanceRateBuffer = createBuffer(vk, *m_device, &instanceRateBufferParams);
553 bufferMemoryReqs = getBufferMemoryRequirements(vk, *m_device, *m_instanceRateBuffer);
557 VK_CHECK(vk.bindBufferMemory(*m_device, *m_instanceRateBuffer, m_instanceRateBufferAlloc->getMemory(), m_instanceRateBufferAlloc->getOffs (…)
    [all...]
vktRobustnessUtil.cpp 225 , m_device (device)
241 m_commandPool = createCommandPool(vk, m_device, &commandPoolParams);
255 m_commandBuffer = allocateCommandBuffer(vk, m_device, &commandBufferAllocateInfo);
281 SimpleAllocator memAlloc (vk, m_device, getPhysicalDeviceMemoryProperties(m_context.getInstanceInterface(), m_context.getPhysicalDevice()));
304 m_colorImage = createImage(vk, m_device, &colorImageParams);
305 m_colorImageAlloc = memAlloc.allocate(getImageMemoryRequirements(vk, m_device, *m_colorImage), MemoryRequirement::Any);
306 VK_CHECK(vk.bindImageMemory(m_device, *m_colorImage, m_colorImageAlloc->getMemory(), m_colorImageAlloc->getOffset()));
320 m_colorAttachmentView = createImageView(vk, m_device, &colorAttachmentViewParams);
371 m_renderPass = createRenderPass(vk, m_device, &renderPassParams);
389 m_framebuffer = createFramebuffer(vk, m_device, &framebufferParams)
    [all...]
vktRobustnessBufferAccessTests.cpp 179 Move<VkDevice> m_device; member in class:vkt::robustness::BufferAccessInstance
657 , m_device (device)
670 SimpleAllocator memAlloc (vk, *m_device, getPhysicalDeviceMemoryProperties(m_context.getInstanceInterface(), m_context.getPhysicalDevice()));
736 m_inBuffer = createBuffer(vk, *m_device, &inBufferParams);
738 inBufferMemoryReqs = getBufferMemoryRequirements(vk, *m_device, *m_inBuffer);
745 VK_CHECK(vk.bindBufferMemory(*m_device, *m_inBuffer, m_inBufferAlloc->getMemory(), m_inBufferAlloc->getOffset()));
747 flushMappedMemoryRange(vk, *m_device, m_inBufferAlloc->getMemory(), m_inBufferAlloc->getOffset(), VK_WHOLE_SIZE);
771 m_outBuffer = createBuffer(vk, *m_device, &outBufferParams);
773 outBufferMemoryReqs = getBufferMemoryRequirements(vk, *m_device, *m_outBuffer);
789 VK_CHECK(vk.bindBufferMemory(*m_device, *m_outBuffer, m_outBufferAlloc->getMemory(), m_outBufferAlloc->getOffset()))
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkRef.hpp 79 , m_device (device)
84 , m_device (DE_NULL)
92 VkDevice m_device; member in class:vk::refdetails::Deleter
188 , m_device (device)
193 , m_device (DE_NULL)
197 void operator() (VkDescriptorSet obj) const { m_deviceIface->freeDescriptorSets(m_device, m_pool, 1, &obj); }
201 VkDevice m_device; member in class:vk::refdetails::Deleter
211 , m_device (device)
216 , m_device (DE_NULL)
220 void operator() (VkCommandBuffer obj) const { m_deviceIface->freeCommandBuffers(m_device, m_pool, 1, &obj);
224 VkDevice m_device; 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...]
vkMemUtil.cpp 52 const VkDevice m_device; member in class:vk::__anon17592::HostPtr
59 , m_device (device)
67 m_vkd.unmapMemory(m_device, m_memory);
170 , m_device (device)
179 Move<VkDeviceMemory> mem = allocateMemory(m_vk, m_device, &allocInfo);
183 hostPtr = MovePtr<HostPtr>(new HostPtr(m_vk, m_device, *mem, 0u, allocInfo.allocationSize, 0u));
199 Move<VkDeviceMemory> mem = allocateMemory(m_vk, m_device, &allocInfo);
205 hostPtr = MovePtr<HostPtr>(new HostPtr(m_vk, m_device, *mem, 0u, allocInfo.allocationSize, 0u));
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBufferObjectUtil.cpp 38 , m_device (device)
45 VK_CHECK(m_vk.bindBufferMemory(m_device, *m_object, allocation->getMemory(), allocation->getOffset()));
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageMutableTests.cpp 985 const VkDevice m_device; member in class:vkt::image::UploadDownloadExecutor
    [all...]
  /external/rmi4utils/f54test/
f54test.cpp 70 retval = m_device.QueryBasicProperties();
95 retval = m_device.Write(m_f54.GetDataBase(), &data, 1);
203 retval = m_device.Read(m_f54Control.reg_41.address,
236 if (0 > m_device.ScanPDT(0x00, 10))
239 if (!m_device.GetFunction(m_f01, 0x01))
242 if (!m_device.GetFunction(m_f54, 0x54))
245 if (!m_device.GetFunction(m_f55, 0x55))
257 retval = m_device.Read(query_addr,
271 retval = m_device.Read(query_addr + offset,
285 retval = m_device.Read(query_addr + offset
    [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...]
vktComputeIndirectComputeDispatchTests.cpp 143 const vk::VkDevice m_device; member in class:vkt::compute::__anon17665::IndirectDispatchInstanceBufferUpload
168 , m_device (context.getDevice())
198 vk::flushMappedMemoryRange(m_device_interface, m_device, alloc.getMemory(), alloc.getOffset(), m_bufferSize);
223 m_device_interface, m_device, m_allocator,
241 vk::flushMappedMemoryRange(m_device_interface, m_device, alloc.getMemory(), alloc.getOffset(), resultBufferSize);
246 m_device_interface, m_device, m_context.getBinaryCollection().get("indirect_dispatch_" + m_name + "_verify"), 0u));
251 vk::Unique<vk::VkDescriptorSetLayout> descriptorSetLayout(layoutBuilder.build(m_device_interface, m_device));
254 const vk::Unique<vk::VkPipelineLayout> pipelineLayout(makePipelineLayout(m_device_interface, m_device, *descriptorSetLayout));
255 const vk::Unique<vk::VkPipeline> computePipeline(makeComputePipeline(m_device_interface, m_device, *pipelineLayout, *verifyShader));
261 .build(m_device_interface, m_device, vk::VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT, static_cast<deUint32>(m_dispatchCommands.s (…)
    [all...]

Completed in 4301 milliseconds

1 2 3