Home
last modified time | relevance | path

Searched refs:deviceInfo (Results 1 – 21 of 21) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/
DvktTestCase.cpp149 VkDeviceCreateInfo deviceInfo; in createDefaultDevice() local
156 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in createDefaultDevice()
182 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in createDefaultDevice()
183 deviceInfo.pNext = DE_NULL; in createDefaultDevice()
184 deviceInfo.queueCreateInfoCount = 1u; in createDefaultDevice()
185 deviceInfo.pQueueCreateInfos = &queueInfo; in createDefaultDevice()
186 deviceInfo.enabledExtensionCount = (deUint32)extensionPtrs.size(); in createDefaultDevice()
187 deviceInfo.ppEnabledExtensionNames = (extensionPtrs.empty() ? DE_NULL : &extensionPtrs[0]); in createDefaultDevice()
188 deviceInfo.enabledLayerCount = (deUint32)layerPtrs.size(); in createDefaultDevice()
189 deviceInfo.ppEnabledLayerNames = (layerPtrs.empty() ? DE_NULL : &layerPtrs[0]); in createDefaultDevice()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationBasicSemaphoreTests.cpp129 VkDeviceCreateInfo deviceInfo; in basicMultiQueueCase() local
199 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in basicMultiQueueCase()
202 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in basicMultiQueueCase()
203 deviceInfo.pNext = DE_NULL; in basicMultiQueueCase()
204 deviceInfo.enabledExtensionCount = 0u; in basicMultiQueueCase()
205 deviceInfo.ppEnabledExtensionNames = DE_NULL; in basicMultiQueueCase()
206 deviceInfo.enabledLayerCount = 0u; in basicMultiQueueCase()
207 deviceInfo.ppEnabledLayerNames = DE_NULL; in basicMultiQueueCase()
208 deviceInfo.pEnabledFeatures = &deviceFeatures; in basicMultiQueueCase()
209deviceInfo.queueCreateInfoCount = (queues[FIRST].queueFamilyIndex == queues[SECOND].queueFamilyIn… in basicMultiQueueCase()
[all …]
DvktSynchronizationInternallySynchronizedObjectsTests.cpp196 VkDeviceCreateInfo deviceInfo; in createQueues() local
245 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in createQueues()
248 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in createQueues()
249 deviceInfo.pNext = DE_NULL; in createQueues()
250 deviceInfo.enabledExtensionCount = 0u; in createQueues()
251 deviceInfo.ppEnabledExtensionNames = DE_NULL; in createQueues()
252 deviceInfo.enabledLayerCount = 0u; in createQueues()
253 deviceInfo.ppEnabledLayerNames = DE_NULL; in createQueues()
254 deviceInfo.pEnabledFeatures = &deviceFeatures; in createQueues()
255 deviceInfo.queueCreateInfoCount = static_cast<deUint32>(queues.countQueueFamilyIndex()); in createQueues()
[all …]
DvktSynchronizationSmokeTests.cpp91 VkDeviceCreateInfo deviceInfo; in createTestDevice() local
115 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in createTestDevice()
125 deMemset(&deviceInfo, 0xcd, sizeof(deviceInfo)); in createTestDevice()
126 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in createTestDevice()
127 deviceInfo.pNext = DE_NULL; in createTestDevice()
128 deviceInfo.flags = (VkDeviceCreateFlags)0u; in createTestDevice()
129 deviceInfo.queueCreateInfoCount = 1u; in createTestDevice()
130 deviceInfo.pQueueCreateInfos = &queueInfo; in createTestDevice()
131 deviceInfo.enabledExtensionCount = 0u; in createTestDevice()
132 deviceInfo.ppEnabledExtensionNames = DE_NULL; in createTestDevice()
[all …]
DvktSynchronizationOperationMultiQueueTests.cpp126 const VkDeviceCreateInfo deviceInfo = in MultiQueues() local
140 m_logicalDevice = createDevice(instance, physicalDevice, &deviceInfo); in MultiQueues()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiBufferTests.cpp147 VkDeviceCreateInfo deviceInfo; in createSparseContext() local
151 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in createSparseContext()
160 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in createSparseContext()
161 deviceInfo.pNext = DE_NULL; in createSparseContext()
162 deviceInfo.queueCreateInfoCount = 1u; in createSparseContext()
163 deviceInfo.pQueueCreateInfos = &queueInfo; in createSparseContext()
164 deviceInfo.enabledExtensionCount = 0u; in createSparseContext()
165 deviceInfo.ppEnabledExtensionNames = DE_NULL; in createSparseContext()
166 deviceInfo.enabledLayerCount = 0u; in createSparseContext()
167 deviceInfo.ppEnabledLayerNames = DE_NULL; in createSparseContext()
[all …]
DvktApiObjectManagementTests.cpp548 const VkDeviceCreateInfo deviceInfo = in create() local
562 return createDevice(res.vki, res.physicalDevice, &deviceInfo, env.allocationCallbacks); in create()
/external/webrtc/webrtc/modules/video_capture/linux/
Ddevice_info_linux.cc34 videocapturemodule::DeviceInfoLinux *deviceInfo = in CreateDeviceInfo() local
36 if (!deviceInfo) in CreateDeviceInfo()
38 deviceInfo = NULL; in CreateDeviceInfo()
41 return deviceInfo; in CreateDeviceInfo()
/external/vulkan-validation-layers/tests/
Dloader_validation_tests.cpp348 auto const deviceInfo = VK::DeviceCreateInfo() in TEST() local
355 result = vkCreateDevice(physical[p], deviceInfo, nullptr, &device); in TEST()
404 auto const deviceInfo = VK::DeviceCreateInfo() in TEST() local
411 result = vkCreateDevice(physical[p], deviceInfo, nullptr, &device); in TEST()
708 …auto const deviceInfo = VK::DeviceCreateInfo().queueCreateInfoCount(1).pQueueCreateInfos(queueInfo… in TEST() local
711 result = vkCreateDevice(physical[p], deviceInfo, nullptr, &device); in TEST()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBase.cpp143 const VkDeviceCreateInfo deviceInfo = in createDeviceSupportingQueues() local
157 m_logicalDevice = createDevice(instance, physicalDevice, &deviceInfo); in createDeviceSupportingQueues()
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java444 JSONObject deviceInfo = new JSONObject(); in buildJsonBluetoothDevice() local
445 deviceInfo.put("address", data.getAddress()); in buildJsonBluetoothDevice()
446 deviceInfo.put("state", data.getBondState()); in buildJsonBluetoothDevice()
447 deviceInfo.put("name", data.getName()); in buildJsonBluetoothDevice()
448 deviceInfo.put("type", data.getType()); in buildJsonBluetoothDevice()
449 return deviceInfo; in buildJsonBluetoothDevice()
967 JSONObject deviceInfo = new JSONObject(); in buildWifiP2pDevice() local
968 deviceInfo.put("Name", data.deviceName); in buildWifiP2pDevice()
969 deviceInfo.put("Address", data.deviceAddress); in buildWifiP2pDevice()
970 return deviceInfo; in buildWifiP2pDevice()
/external/skia/src/gpu/vk/
DGrVkBackendContext.cpp232 const VkDeviceCreateInfo deviceInfo = { in Create() local
245 err = vkCreateDevice(physDev, &deviceInfo, nullptr, &device); in Create()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRender.cpp631 VkDeviceCreateInfo deviceInfo; in createDevice() local
635 deMemset(&deviceInfo, 0, sizeof(deviceInfo)); in createDevice()
644 deviceInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO; in createDevice()
645 deviceInfo.pNext = DE_NULL; in createDevice()
646 deviceInfo.queueCreateInfoCount = 1u; in createDevice()
647 deviceInfo.pQueueCreateInfos = &queueInfo; in createDevice()
648 deviceInfo.enabledExtensionCount = 0u; in createDevice()
649 deviceInfo.ppEnabledExtensionNames = DE_NULL; in createDevice()
650 deviceInfo.enabledLayerCount = 0u; in createDevice()
651 deviceInfo.ppEnabledLayerNames = DE_NULL; in createDevice()
[all …]
/external/skia/infra/bots/
Dgen_tasks.go160 deviceInfo, ok := ANDROID_MAPPING[parts["model"]]
164 d["device_type"] = deviceInfo[0]
165 d["device_os"] = deviceInfo[1]
/external/vulkan-validation-layers/demos/
Dcube.cpp375 auto deviceInfo = vk::DeviceCreateInfo() in create_device() local
389 deviceInfo.setQueueCreateInfoCount(2); in create_device()
392 auto result = gpu.createDevice(&deviceInfo, nullptr, &device); in create_device()
/external/deqp/external/vulkancts/framework/vulkan/
DvkNullDriver.cpp213 Device (VkPhysicalDevice physicalDevice, const VkDeviceCreateInfo* deviceInfo);
/external/robolectric/v3/runtime/
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...