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

1 2 3

  /external/valgrind/include/vki/
vki-xen.h 82 #include <vki/vki-xen-x86.h>
107 #include <vki/vki-xen-domctl.h>
108 #include <vki/vki-xen-sysctl.h>
109 #include <vki/vki-xen-mmuext.h>
110 #include <vki/vki-xen-schedop.h
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiUtil.hpp 65 VkResult createSurface (const InstanceInterface& vki,
73 Move<VkSurfaceKHR> createSurface (const InstanceInterface& vki,
80 VkBool32 getPhysicalDeviceSurfaceSupport (const InstanceInterface& vki,
85 VkSurfaceCapabilitiesKHR getPhysicalDeviceSurfaceCapabilities (const InstanceInterface& vki,
89 std::vector<VkSurfaceFormatKHR> getPhysicalDeviceSurfaceFormats (const InstanceInterface& vki,
93 std::vector<VkPresentModeKHR> getPhysicalDeviceSurfacePresentModes (const InstanceInterface& vki,
vkWsiUtil.cpp 123 VkResult createSurface (const InstanceInterface& vki,
149 return vki.createXlibSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
165 return vki.createXcbSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
181 return vki.createWaylandSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
197 return vki.createMirSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
211 return vki.createAndroidSurfaceKHR(instance, &createInfo, pAllocator, pSurface);
227 return vki.createWin32SurfaceKHR(instance, &createInfo, pAllocator, pSurface);
236 Move<VkSurfaceKHR> createSurface (const InstanceInterface& vki,
244 VK_CHECK(createSurface(vki, instance, wsiType, nativeDisplay, nativeWindow, pAllocator, &object));
245 return Move<VkSurfaceKHR>(check<VkSurfaceKHR>(object), Deleter<VkSurfaceKHR>(vki, instance, pAllocator))
    [all...]
vkDebugReportUtil.cpp 131 Move<VkDebugReportCallbackEXT> createCallback (const InstanceInterface& vki,
150 return createDebugReportCallbackEXT(vki, instance, &createInfo);
155 DebugReportRecorder::DebugReportRecorder (const InstanceInterface& vki, VkInstance instance)
157 , m_callback (createCallback(vki, instance, &m_messages))
vkMemUtil.cpp 204 static MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki,
212 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
233 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki,
249 return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicatedAllocationInfo);
252 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki,
268 return allocateDedicated(vki, vkd, physDevice, device, memoryRequirements, requirement, &dedicatedAllocationInfo);
vkQueryUtil.cpp 233 vector<VkLayerProperties> enumerateDeviceLayerProperties (const InstanceInterface& vki, VkPhysicalDevice physicalDevice)
238 VK_CHECK(vki.enumerateDeviceLayerProperties(physicalDevice, &numLayers, DE_NULL));
243 VK_CHECK(vki.enumerateDeviceLayerProperties(physicalDevice, &numLayers, &properties[0]));
250 vector<VkExtensionProperties> enumerateDeviceExtensionProperties (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, const char* layerName)
255 VK_CHECK(vki.enumerateDeviceExtensionProperties(physicalDevice, layerName, &numExtensions, DE_NULL));
260 VK_CHECK(vki.enumerateDeviceExtensionProperties(physicalDevice, layerName, &numExtensions, &properties[0]));
vkMemUtil.hpp 136 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkBuffer buffer, MemoryRequirement requirement);
137 de::MovePtr<Allocation> allocateDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice& physDevice, const VkDevice device, const VkImage image, MemoryRequirement requirement);
vkDebugReportUtil.hpp 77 DebugReportRecorder (const InstanceInterface& vki, VkInstance instance);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiComputeInstanceResultBuffer.cpp 34 ComputeInstanceResultBuffer::ComputeInstanceResultBuffer (const DeviceInterface &vki,
38 : m_vki(vki),
58 Move<VkBuffer> ComputeInstanceResultBuffer::createResultBuffer(const DeviceInterface &vki,
76 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo));
78 const VkMemoryRequirements requirements = getBufferMemoryRequirements(vki, device, *buffer);
81 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset()));
89 flushMappedMemoryRange(vki, device, allocation->getMemory(), allocation->getOffset(), (VkDeviceSize) DATA_SIZE);
vktApiBufferComputeInstance.cpp 44 const DeviceInterface& vki = context.getDeviceInterface(); local
62 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo));
64 const VkMemoryRequirements requirements = getBufferMemoryRequirements(vki, device, *buffer);
67 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset()));
78 flushMappedMemoryRange(vki, device, allocation->getMemory(), allocation->getOffset(), bufferSize);
91 const DeviceInterface& vki = context.getDeviceInterface(); local
109 Move<VkBuffer> buffer(createBuffer(vki, device, &createInfo));
111 const VkMemoryRequirements requirements = getBufferMemoryRequirements(vki, device, *buffer);
114 VK_CHECK(vki.bindBufferMemory(device, *buffer, allocation->getMemory(), allocation->getOffset()));
126 flushMappedMemoryRange(vki, device, allocation->getMemory(), allocation->getOffset(), bufferSize)
135 const DeviceInterface& vki = context.getDeviceInterface(); local
148 const DeviceInterface& vki = context.getDeviceInterface(); local
164 const DeviceInterface& vki = context.getDeviceInterface(); local
201 const DeviceInterface& vki = context.getDeviceInterface(); local
    [all...]
vktApiComputeInstanceResultBuffer.hpp 46 ComputeInstanceResultBuffer (const vk::DeviceInterface &vki,
60 static vk::Move<vk::VkBuffer> createResultBuffer(const vk::DeviceInterface &vki,
vktApiExternalMemoryTests.cpp 163 deUint32 chooseQueueFamilyIndex (const vk::InstanceInterface& vki,
167 const std::vector<vk::VkQueueFamilyProperties> properties (vk::getPhysicalDeviceQueueFamilyProperties(vki, device));
209 vk::Move<vk::VkDevice> createDevice (const vk::InstanceInterface& vki,
302 return vk::createDevice(vki, physicalDevice, &deviceCreateInfo);
324 void checkSemaphoreSupport (const vk::InstanceInterface& vki,
343 vki.getPhysicalDeviceExternalSemaphorePropertiesKHR(device, &info, &properties);
352 void checkFenceSupport (const vk::InstanceInterface& vki,
371 vki.getPhysicalDeviceExternalFencePropertiesKHR(device, &info, &properties);
380 void checkBufferSupport (const vk::InstanceInterface& vki,
404 vki.getPhysicalDeviceExternalBufferPropertiesKHR(device, &info, &properties)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmUtils.cpp 51 VkPhysicalDevice16BitStorageFeaturesKHR querySupported16BitStorageFeatures (const InstanceInterface& vki, VkPhysicalDevice device, const std::vector<std::string>& instanceExtensions)
71 vki.getPhysicalDeviceFeatures2KHR(device, &features);
77 VkPhysicalDeviceVariablePointerFeaturesKHR querySupportedVariablePointersFeatures (const InstanceInterface& vki, VkPhysicalDevice device, const std::vector<std::string>& instanceExtensions)
95 vki.getPhysicalDeviceFeatures2KHR(device, &features);
103 bool is16BitStorageFeaturesSupported (const InstanceInterface& vki, VkPhysicalDevice device, const std::vector<std::string>& instanceExtensions, Extension16BitStorageFeatures toCheck)
105 VkPhysicalDevice16BitStorageFeaturesKHR extensionFeatures = querySupported16BitStorageFeatures(vki, device, instanceExtensions);
122 bool isVariablePointersFeaturesSupported (const InstanceInterface& vki, VkPhysicalDevice device, const std::vector<std::string>& instanceExtensions, ExtensionVariablePointersFeatures toCheck)
124 VkPhysicalDeviceVariablePointerFeaturesKHR extensionFeatures = querySupportedVariablePointersFeatures(vki, device, instanceExtensions);
140 const InstanceInterface& vki = context.getInstanceInterface(); local
144 const VkPhysicalDeviceFeatures deviceFeatures = getPhysicalDeviceFeatures(vki, physicalDevice)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSurfaceTests.cpp 117 virtual void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, T* data) = 0;
120 const InstanceInterface& vki,
135 getResult(vki, physDevice, surface, &outputData[0]); // update m_count and m_result
148 void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, VkSurfaceFormatKHR* data)
150 m_result = vki.getPhysicalDeviceSurfaceFormatsKHR(physDevice, surface, &m_count, data);
156 void getResult (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkSurfaceKHR surface, VkPresentModeKHR* data)
158 m_result = vki.getPhysicalDeviceSurfacePresentModesKHR(physDevice, surface, &m_count, data);
195 const InstanceDriver vki; member in struct:vkt::wsi::__anon16849::InstanceHelper
205 , vki (context.getPlatformInterface(), *instance)
216 , vki (context.getPlatformInterface(), *instance
    [all...]
vktWsiSwapchainTests.cpp 124 Move<VkDevice> createDeviceWithWsi (const InstanceInterface& vki,
164 return createDevice(vki, physicalDevice, &deviceParams, pAllocator);
167 deUint32 getNumQueueFamilyIndices (const InstanceInterface& vki, VkPhysicalDevice physicalDevice)
171 vki.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numFamilies, DE_NULL);
176 vector<deUint32> getSupportedQueueFamilyIndices (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, VkSurfaceKHR surface)
178 const deUint32 numTotalFamilyIndices = getNumQueueFamilyIndices(vki, physicalDevice);
183 if (getPhysicalDeviceSurfaceSupport(vki, physicalDevice, queueFamilyNdx, surface) != VK_FALSE)
190 deUint32 chooseQueueFamilyIndex (const InstanceInterface& vki, VkPhysicalDevice physicalDevice, VkSurfaceKHR surface)
192 const vector<deUint32> supportedFamilyIndices = getSupportedQueueFamilyIndices(vki, physicalDevice, surface);
204 const InstanceDriver vki; member in struct:vkt::wsi::__anon16851::InstanceHelper
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreUtil.cpp 102 VkDeviceSize getOptimalUniformBufferChunkSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice, VkDeviceSize minimumRequiredChunkSizeBytes)
104 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
vktImageLoadStoreUtil.hpp 68 vk::VkDeviceSize getOptimalUniformBufferChunkSize (const vk::InstanceInterface& vki, const vk::VkPhysicalDevice physDevice, vk::VkDeviceSize minimumRequiredChunkSizeBytes);
vktImageMultisampleLoadStoreTests.cpp 180 void checkRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const CaseDef& caseDef)
183 vki.getPhysicalDeviceFeatures(physDevice, &features);
189 const VkResult imageFormatResult = vki.getPhysicalDeviceImageFormatProperties(
243 const InstanceInterface& vki = context.getInstanceInterface(); local
251 checkRequirements(vki, physDevice, caseDef);
266 const VkDeviceSize bufferChunkSize = getOptimalUniformBufferChunkSize(vki, physDevice, sizeof(deInt32));
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationLimitsTests.cpp 75 const InstanceInterface& vki = context.getInstanceInterface(); local
77 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
82 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
vktTessellationGeometryPointSizeTests.cpp 67 void checkPointSizeRequirements (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const int maxPointSize)
69 const VkPhysicalDeviceProperties properties = getPhysicalDeviceProperties(vki, physDevice);
286 const InstanceInterface& vki = context.getInstanceInterface(); local
289 requireFeatures (vki, physDevice, FEATURE_TESSELLATION_SHADER | FEATURE_GEOMETRY_SHADER | FEATURE_SHADER_TESSELLATION_AND_GEOMETRY_POINT_SIZE);
290 checkPointSizeRequirements(vki, physDevice, expectedPointSize);
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestCase.cpp 87 vector<string> getValidationLayers (const InstanceInterface& vki, VkPhysicalDevice physicalDevice)
89 return getValidationLayers(enumerateDeviceLayerProperties(vki, physicalDevice));
145 Move<VkDevice> createDefaultDevice (const InstanceInterface& vki,
164 enabledLayers = getValidationLayers(vki, physicalDevice);
198 return createDevice(vki, physicalDevice, &deviceInfo);
211 DeviceFeatures (const InstanceInterface& vki,
232 vki.getPhysicalDeviceFeatures2KHR(physicalDevice, &coreFeatures);
235 coreFeatures.features = getPhysicalDeviceFeatures(vki, physicalDevice);
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryRequirementsTests.cpp 174 const InstanceInterface& vki,
210 const InstanceInterface& vki,
274 const InstanceInterface& vki = context.getInstanceInterface(); local
278 preTestChecks(context, vki, physDevice, bufferFlags);
280 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
281 const VkPhysicalDeviceLimits limits = getPhysicalDeviceProperties(vki, physDevice).limits;
345 const InstanceInterface& vki,
349 const VkPhysicalDeviceFeatures features = getPhysicalDeviceFeatures(vki, physDevice);
455 const InstanceInterface& vki,
483 const InstanceInterface& vki,
1305 const InstanceInterface& vki = context.getInstanceInterface(); local
1658 const InstanceInterface& vki = context.getInstanceInterface(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingShaderAccessTests.cpp 358 de::MovePtr<vk::Allocation> allocateAndBindObjectMemory (const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkBuffer buffer, vk::MemoryRequirement requirement)
360 const vk::VkMemoryRequirements requirements = vk::getBufferMemoryRequirements(vki, device, buffer);
363 VK_CHECK(vki.bindBufferMemory(device, buffer, allocation->getMemory(), allocation->getOffset()));
367 de::MovePtr<vk::Allocation> allocateAndBindObjectMemory (const vk::DeviceInterface& vki, vk::VkDevice device, vk::Allocator& allocator, vk::VkImage image, vk::MemoryRequirement requirement)
369 const vk::VkMemoryRequirements requirements = vk::getImageMemoryRequirements(vki, device, image);
372 VK_CHECK(vki.bindImageMemory(device, image, allocation->getMemory(), allocation->getOffset()));
462 static vk::Move<vk::VkImage> createColorAttachment (const vk::DeviceInterface& vki,
469 static vk::Move<vk::VkImageView> createColorAttachmentView (const vk::DeviceInterface& vki,
474 static vk::Move<vk::VkRenderPass> createRenderPass (const vk::DeviceInterface& vki,
478 static vk::Move<vk::VkFramebuffer> createFramebuffer (const vk::DeviceInterface& vki,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMakeUtil.cpp 296 MovePtr<Allocation> bindImageDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice physDevice, const VkDevice device, const VkImage image, const MemoryRequirement requirement)
298 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, image, requirement));
303 MovePtr<Allocation> bindBufferDedicated (const InstanceInterface& vki, const DeviceInterface& vkd, const VkPhysicalDevice physDevice, const VkDevice device, const VkBuffer buffer, const MemoryRequirement requirement)
305 MovePtr<Allocation> alloc(allocateDedicated(vki, vkd, physDevice, device, buffer, requirement));
vktPipelineRenderToImageTests.cpp 170 de::MovePtr<Allocation> bindBuffer (const InstanceInterface& vki,
188 return bindBufferDedicated(vki, vkd, physDevice, device, buffer, requirement);
198 de::MovePtr<Allocation> bindImage (const InstanceInterface& vki,
216 return bindImageDedicated(vki, vkd, physDevice, device, image, requirement);
697 VkDeviceSize getMaxDeviceHeapSize (const InstanceInterface& vki, const VkPhysicalDevice physDevice)
699 const VkPhysicalDeviceMemoryProperties memoryProperties = getPhysicalDeviceMemoryProperties(vki, physDevice);
740 bool isDepthStencilFormatSupported (const InstanceInterface& vki, const VkPhysicalDevice physDevice, const VkFormat format)
742 const VkFormatProperties properties = getPhysicalDeviceFormatProperties(vki, physDevice, format);
866 const InstanceInterface& vki = context.getInstanceInterface(); local
1358 const InstanceInterface& vki = context.getInstanceInterface(); local
    [all...]

Completed in 281 milliseconds

1 2 3