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

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.hpp 74 vk::Move<vk::VkImage> m_image;
76 vk::Move<vk::VkImageView> m_imageView;
77 vk::Move<vk::VkSampler> m_sampler;
83 vk::Move<vk::VkDescriptorPool> m_descriptorPool;
84 vk::Move<vk::VkDescriptorSetLayout> m_descriptorSetLayout;
85 vk::Move<vk::VkDescriptorSet> m_descriptorSet;
87 vk::Move<vk::VkImage> m_colorImage;
89 vk::Move<vk::VkImageView> m_colorAttachmentView;
90 vk::Move<vk::VkRenderPass> m_renderPass;
91 vk::Move<vk::VkFramebuffer> m_framebuffer
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtil.hpp 34 Move<VkPipeline> createGraphicsPipeline (const DeviceInterface& vk,
39 Move<VkPipeline> createComputePipeline (const DeviceInterface& vk,
44 Move<VkCommandBuffer> allocateCommandBuffer (const DeviceInterface& vk, VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo);
45 Move<VkDescriptorSet> allocateDescriptorSet (const DeviceInterface& vk, VkDevice device, const VkDescriptorSetAllocateInfo* pAllocateInfo);
vkRefUtil.inl 4 Move<VkInstance> createInstance (const PlatformInterface& vk, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
5 Move<VkDevice> createDevice (const InstanceInterface& vk, VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
6 Move<VkDeviceMemory> allocateMemory (const DeviceInterface& vk, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
7 Move<VkFence> createFence (const DeviceInterface& vk, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
8 Move<VkSemaphore> createSemaphore (const DeviceInterface& vk, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
9 Move<VkEvent> createEvent (const DeviceInterface& vk, VkDevice device, const VkEventCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
10 Move<VkQueryPool> createQueryPool (const DeviceInterface& vk, VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
11 Move<VkBuffer> createBuffer (const DeviceInterface& vk, VkDevice device, const VkBufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
12 Move<VkBufferView> createBufferView (const DeviceInterface& vk, VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator = DE_NULL);
13 Move<VkImage> createImage (const DeviceInterface& vk, VkDevice device, const VkImageCreateInfo (…)
    [all...]
vkDeviceUtil.hpp 40 Move<VkInstance> createDefaultInstance (const PlatformInterface& vkPlatform);
41 Move<VkInstance> createDefaultInstance (const PlatformInterface& vkPlatform,
vkRefUtil.cpp 31 Move<VkPipeline> createGraphicsPipeline (const DeviceInterface& vk,
39 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator));
42 Move<VkPipeline> createComputePipeline (const DeviceInterface& vk,
50 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator));
53 Move<VkCommandBuffer> allocateCommandBuffer (const DeviceInterface& vk, VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo)
58 return Move<VkCommandBuffer>(check<VkCommandBuffer>(object), Deleter<VkCommandBuffer>(vk, device, pAllocateInfo->commandPool));
61 Move<VkDescriptorSet> allocateDescriptorSet (const DeviceInterface& vk, VkDevice device, const VkDescriptorSetAllocateInfo* pAllocateInfo)
66 return Move<VkDescriptorSet>(check<VkDescriptorSet>(object), Deleter<VkDescriptorSet>(vk, device, pAllocateInfo->descriptorPool));
vkRefUtilImpl.inl 129 Move<VkInstance> createInstance (const PlatformInterface& vk, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
133 return Move<VkInstance>(check<VkInstance>(object), Deleter<VkInstance>(vk, object, pAllocator));
136 Move<VkDevice> createDevice (const InstanceInterface& vk, VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
140 return Move<VkDevice>(check<VkDevice>(object), Deleter<VkDevice>(vk, object, pAllocator));
143 Move<VkDeviceMemory> allocateMemory (const DeviceInterface& vk, VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator)
147 return Move<VkDeviceMemory>(check<VkDeviceMemory>(object), Deleter<VkDeviceMemory>(vk, device, pAllocator));
150 Move<VkFence> createFence (const DeviceInterface& vk, VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
154 return Move<VkFence>(check<VkFence>(object), Deleter<VkFence>(vk, device, pAllocator));
157 Move<VkSemaphore> createSemaphore (const DeviceInterface& vk, VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
161 return Move<VkSemaphore>(check<VkSemaphore>(object), Deleter<VkSemaphore>(vk, device, pAllocator))
    [all...]
vkRef.hpp 300 class Move : public RefBase<T>
304 Move (Checked<U> object, Deleter<U> deleter)
308 Move (RefData<T> data)
311 Move (Move<T>& other)
314 Move (void)
319 Move<T>& operator= (Move<T>& other);
320 Move<T>& operator= (RefData<T> data);
326 inline Move<T>& Move<T>::operator= (Move<T>& other
    [all...]
vkDeviceUtil.cpp 39 Move<VkInstance> createDefaultInstance (const PlatformInterface& vkPlatform,
79 Move<VkInstance> createDefaultInstance (const PlatformInterface& vkPlatform)
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferComputeInstance.hpp 36 vk::Move<vk::VkBuffer> createColorDataBuffer ( deUint32 offset,
43 vk::Move<vk::VkDescriptorSetLayout> createDescriptorSetLayout (vkt::Context& context);
45 vk::Move<vk::VkDescriptorPool> createDescriptorPool (vkt::Context& context);
47 vk::Move<vk::VkDescriptorSet> createDescriptorSet (vk::VkDescriptorPool pool,
vktApiBufferComputeInstance.cpp 36 Move<VkBuffer> createColorDataBuffer (deUint32 offset,
61 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo));
85 Move<VkDescriptorSetLayout> createDescriptorSetLayout (vkt::Context& context)
99 Move<VkDescriptorPool> createDescriptorPool (vkt::Context& context)
110 Move<VkDescriptorSet> createDescriptorSet (VkDescriptorPool pool,
137 vk::Move<vk::VkDescriptorSet> descriptorSet = allocateDescriptorSet(vki, device, &allocInfo);
vktApiBufferViewAccessTests.cpp 80 Move<VkImage> m_colorImage;
82 Move<VkImageView> m_colorAttachmentView;
83 Move<VkRenderPass> m_renderPass;
84 Move<VkFramebuffer> m_framebuffer;
86 Move<VkDescriptorSetLayout> m_descriptorSetLayout;
87 Move<VkDescriptorPool> m_descriptorPool;
88 Move<VkDescriptorSet> m_descriptorSet;
90 Move<VkBuffer> m_uniformBuffer;
92 Move<VkBufferView> m_uniformBufferView;
94 Move<VkShaderModule> m_vertexShaderModule
    [all...]
vktApiBufferViewCreateTests.cpp 100 Move<VkBuffer> testBuffer;
137 Move<VkDeviceMemory> memory;
148 Move<VkBufferView> bufferView;
184 Move<VkBufferView> completeBufferView;
vktApiComputeInstanceResultBuffer.hpp 57 static vk::Move<vk::VkBuffer> createResultBuffer(const vk::DeviceInterface &vki,
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBaseClass.hpp 116 vk::Move<vk::VkPipeline> m_pipeline;
117 vk::Move<vk::VkPipelineLayout> m_pipelineLayout;
120 vk::Move<vk::VkImageView> m_colorTargetView;
125 vk::Move<vk::VkCommandPool> m_cmdPool;
126 vk::Move<vk::VkCommandBuffer> m_cmdBuffer;
128 vk::Move<vk::VkFramebuffer> m_framebuffer;
129 vk::Move<vk::VkRenderPass> m_renderPass;
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateBaseClass.hpp 91 vk::Move<vk::VkPipeline> m_pipeline;
92 vk::Move<vk::VkPipelineLayout> m_pipelineLayout;
95 vk::Move<vk::VkImageView> m_colorTargetView;
100 vk::Move<vk::VkCommandPool> m_cmdPool;
101 vk::Move<vk::VkCommandBuffer> m_cmdBuffer;
103 vk::Move<vk::VkFramebuffer> m_framebuffer;
104 vk::Move<vk::VkRenderPass> m_renderPass;
  /external/libchrome/base/posix/
file_descriptor_shuffle.h 38 // Destructively move |src| to |dest|, overwriting |dest|. Returns true iff
40 virtual bool Move(int src, int dest) = 0;
52 bool Move(int src, int dest) override;
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTestsUtil.hpp 54 vk::Move<vk::VkBuffer> m_buffer;
75 vk::Move<vk::VkImage> m_image;
81 vk::Move<vk::VkCommandPool> makeCommandPool (const vk::DeviceInterface& vk,
85 vk::Move<vk::VkCommandBuffer> makeCommandBuffer (const vk::DeviceInterface& vk,
89 vk::Move<vk::VkPipelineLayout> makePipelineLayout (const vk::DeviceInterface& vk,
92 vk::Move<vk::VkPipelineLayout> makePipelineLayout (const vk::DeviceInterface& vk,
96 vk::Move<vk::VkPipeline> makeComputePipeline (const vk::DeviceInterface& vk,
101 vk::Move<vk::VkBufferView> makeBufferView (const vk::DeviceInterface& vk,
108 vk::Move<vk::VkImageView> makeImageView (const vk::DeviceInterface& vk,
115 vk::Move<vk::VkDescriptorSet> makeDescriptorSet (const vk::DeviceInterface& vk
    [all...]
vktComputeTestsUtil.cpp 89 Move<VkCommandPool> makeCommandPool (const DeviceInterface& vk, const VkDevice device, const deUint32 queueFamilyIndex)
101 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
114 Move<VkPipelineLayout> makePipelineLayout (const DeviceInterface& vk,
130 Move<VkPipelineLayout> makePipelineLayout (const DeviceInterface& vk,
147 Move<VkPipeline> makeComputePipeline (const DeviceInterface& vk,
175 Move<VkBufferView> makeBufferView (const DeviceInterface& vk,
195 Move<VkImageView> makeImageView (const DeviceInterface& vk,
216 Move<VkDescriptorSet> makeDescriptorSet (const DeviceInterface& vk,
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.hpp 414 vk::Move<vk::VkImage> createImage2D (const tcu::Texture2D& texture,
448 vk::Move<vk::VkImage> m_colorImage;
450 vk::Move<vk::VkImageView> m_colorImageView;
452 vk::Move<vk::VkRenderPass> m_renderPass;
453 vk::Move<vk::VkFramebuffer> m_framebuffer;
454 vk::Move<vk::VkPipelineLayout> m_pipelineLayout;
455 vk::Move<vk::VkPipeline> m_graphicsPipeline;
457 vk::Move<vk::VkShaderModule> m_vertexShaderModule;
458 vk::Move<vk::VkShaderModule> m_fragmentShaderModule;
460 vk::Move<vk::VkBuffer> m_indiceBuffer
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.hpp 74 vk::Move<vk::VkBuffer> m_buffer;
95 vk::Move<vk::VkImage> m_image;
108 vk::Move<vk::VkCommandPool> makeCommandPool (const vk::DeviceInterface& vk,
112 vk::Move<vk::VkCommandBuffer> makeCommandBuffer (const vk::DeviceInterface& vk,
116 vk::Move<vk::VkPipelineLayout> makePipelineLayout (const vk::DeviceInterface& vk,
120 vk::Move<vk::VkPipeline> makeComputePipeline (const vk::DeviceInterface& vk,
125 vk::Move<vk::VkBufferView> makeBufferView (const vk::DeviceInterface& vk,
132 vk::Move<vk::VkImageView> makeImageView (const vk::DeviceInterface& vk,
139 vk::Move<vk::VkDescriptorSet> makeDescriptorSet (const vk::DeviceInterface& vk,
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
README 12 * Move ant-contrib-1.0b3.jar from the unzipped directory to runtime/JavaScript/third/
16 * Move compiler.jar from the unzipped directory to runtime/JavaScript/third/
20 * Move the unzipped folder to runtime/JavaScript/third/jsdoc-toolkit
24 * Move the unzipped folder to runtime/JavaScript/tests/jsunit
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 40 #ifdef Move
41 #undef Move
  /external/v8/test/cctest/
test-macro-assembler-ia32.cc 123 __ mov(eax, Immediate(5)); // Test XMM move immediate.
124 __ Move(xmm0, 0.0);
125 __ Move(xmm1, 0.0);
128 __ Move(xmm2, 991.01);
131 __ Move(xmm0, 991.01);
137 __ Move(edx, Immediate(0)); // Test Move()
140 __ Move(ecx, Immediate(-1));
143 __ Move(ebx, Immediate(0x77));
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesTestsUtil.hpp 115 vk::Move<vk::VkCommandPool> makeCommandPool (const vk::DeviceInterface& vk,
119 vk::Move<vk::VkCommandBuffer> makeCommandBuffer (const vk::DeviceInterface& vk,
123 vk::Move<vk::VkPipelineLayout> makePipelineLayout (const vk::DeviceInterface& vk,
127 vk::Move<vk::VkPipeline> makeComputePipeline (const vk::DeviceInterface& vk,
132 vk::Move<vk::VkBufferView> makeBufferView (const vk::DeviceInterface& vk,
139 vk::Move<vk::VkImageView> makeImageView (const vk::DeviceInterface& vk,
146 vk::Move<vk::VkDescriptorSet> makeDescriptorSet (const vk::DeviceInterface& vk,
151 vk::Move<vk::VkSemaphore> makeSemaphore (const vk::DeviceInterface& vk,
223 inline de::SharedPtr<vk::Unique<T> > makeVkSharedPtr (vk::Move<T> vkMove)
  /external/elfutils/libelf/
gelf_xlate.h 50 TYPE (Move, LIBELFBITS)

Completed in 241 milliseconds

1 2 3 4 5 6 7 8 91011>>