Home
last modified time | relevance | path

Searched refs:VK_MAX_PHYSICAL_DEVICE_NAME_SIZE (Results 1 - 24 of 24) sorted by relevance

/third_party/vulkan-loader/loader/
H A Dloader_linux.c265 strncpy(sorted_device_info[index].device_name, dev_props.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in linux_read_sorted_physical_devices()
369 VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in linux_sort_physical_device_groups()
H A Dloader_common.h422 char device_name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/vulkan-loader/tests/
H A Dloader_layer_tests.cpp4518 strncpy_s(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, dev_name.c_str(), dev_name.length() + 1); in TEST()
4520 strncpy(properties.deviceName, dev_name.c_str(), VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in TEST()
4595 strncpy_s(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, dev_name.c_str(), dev_name.length() + 1); in TEST()
4597 strncpy(properties.deviceName, dev_name.c_str(), VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in TEST()
4645 strncpy_s(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, dev_name.c_str(), dev_name.length() + 1); in TEST()
4647 strncpy(properties.deviceName, dev_name.c_str(), VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in TEST()
4695 strncpy_s(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, dev_name.c_str(), dev_name.length() + 1); in TEST()
4697 strncpy(properties.deviceName, dev_name.c_str(), VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in TEST()
4771 strncpy_s(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, dev_name.c_str(), dev_name.length() + 1); in TEST()
4773 strncpy(properties.deviceName, dev_name.c_str(), VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in TEST()
[all...]
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_physical_device.c710 char device_name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE]; in vn_physical_device_init_properties()
714 if (device_name_len >= VK_MAX_PHYSICAL_DEVICE_NAME_SIZE) { in vn_physical_device_init_properties()
715 memcpy(device_name + VK_MAX_PHYSICAL_DEVICE_NAME_SIZE - 5, "...)", 4); in vn_physical_device_init_properties()
716 device_name_len = VK_MAX_PHYSICAL_DEVICE_NAME_SIZE - 1; in vn_physical_device_init_properties()
/third_party/vulkan-loader/tests/framework/layer/
H A Dtest_layer.cpp549 strncpy_s(pProperties->deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, "physdev_added_xx", 17);
551 strncpy(pProperties->deviceName, "physdev_added_xx", VK_MAX_PHYSICAL_DEVICE_NAME_SIZE);
/third_party/vulkan-loader/tests/framework/icd/
H A Dtest_icd.cpp934 size_t max_len = (phys_dev.deviceName.length() > VK_MAX_PHYSICAL_DEVICE_NAME_SIZE) ? VK_MAX_PHYSICAL_DEVICE_NAME_SIZE
937 pProperties->deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE - 1] = '\0';
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_private.h187 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_private.h275 char name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
276 char marketing_name[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkPhysicalDevice.cpp608 snprintf(properties.deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE, in getProperties()
/third_party/glfw/deps/glad/
H A Dvulkan.h182 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256 macro
4817 char deviceName [ VK_MAX_PHYSICAL_DEVICE_NAME_SIZE ];
/third_party/vk-gl-cts/external/vulkancts/scripts/src/
H A Dvulkan_sc_core.h122 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U macro
1946 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiFeatureInfo.cpp2906 if (deStrnlen(props->deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE) == VK_MAX_PHYSICAL_DEVICE_NAME_SIZE) in deviceProperties()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiFeatureInfo.cpp2931 if (deStrnlen(props->deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE) == VK_MAX_PHYSICAL_DEVICE_NAME_SIZE) in deviceProperties()
/third_party/skia/include/third_party/vulkan/vulkan/
H A Dvulkan_core.h134 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U macro
2673 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_device.h551 size += vn_sizeof_array_size(VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in vn_sizeof_VkPhysicalDeviceProperties()
552 size += vn_sizeof_char_array(val->deviceName, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in vn_sizeof_VkPhysicalDeviceProperties()
569 const size_t array_size = vn_decode_array_size(dec, VK_MAX_PHYSICAL_DEVICE_NAME_SIZE); in vn_decode_VkPhysicalDeviceProperties()
/third_party/mesa3d/include/vulkan/
H A Dvulkan_core.h133 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U macro
3030 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan_core.h135 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U macro
2766 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
H A Dvulkan_structs.hpp[all...]
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
H A Dvulkan_core.h135 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U macro
2815 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkansc/
H A Dvulkan_json_data.hpp7721 for (unsigned int i = 0; i < VK_MAX_PHYSICAL_DEVICE_NAME_SIZE; i++) { in print_VkPhysicalDeviceProperties()
7722 bool isCommaNeeded = (i+1) != VK_MAX_PHYSICAL_DEVICE_NAME_SIZE; in print_VkPhysicalDeviceProperties()
7777 for (unsigned int i = 0; i < VK_MAX_PHYSICAL_DEVICE_NAME_SIZE; i++) { in print_VkPhysicalDeviceProperties()
7778 bool isCommaNeeded = (i+1) != VK_MAX_PHYSICAL_DEVICE_NAME_SIZE; in print_VkPhysicalDeviceProperties()
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_core.h134 #define VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256U macro
3180 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
H A Dvulkan.hpp6785 VULKAN_HPP_CONSTEXPR_INLINE uint32_t MaxPhysicalDeviceNameSize = VK_MAX_PHYSICAL_DEVICE_NAME_SIZE;
H A Dvulkan_hash.hpp10469 for ( size_t i = 0; i < VK_MAX_PHYSICAL_DEVICE_NAME_SIZE; ++i )
H A Dvulkan_structs.hpp[all...]

Completed in 589 milliseconds