/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | VK_QCOM_render_pass_transform.adoc | 103 The driver version reported in VkPhysicalDeviceProperties.driverVersion is a 110 uint32_t major = ((driverVersion) >> 22); 111 uint32_t minor = ((driverVersion) >> 12) & 0x3ff); 112 uint32_t patch = ((driverVersion) & 0xfff);
|
D | VK_KHR_external_memory.adoc | 56 slink:VkPhysicalDeviceProperties::pname:driverVersion field can be used to
|
/hardware/libhardware/modules/input/evdev/ |
D | InputHub.cpp | 181 int driverVersion; in queryProperties() local 182 if (TEMP_FAILURE_RETRY(ioctl(mFd, EVIOCGVERSION, &driverVersion))) { in queryProperties() 223 driverVersion >> 16, (driverVersion >> 8) & 0xff, (driverVersion >> 16) & 0xff); in queryProperties()
|
/hardware/google/gfxstream/host/vulkan/ |
D | VkCommonOperations.cpp | 401 static std::string decodeDriverVersion(uint32_t vendorId, uint32_t driverVersion) { in decodeDriverVersion() argument 406 uint32_t major = driverVersion >> 22; in decodeDriverVersion() 407 uint32_t minor = (driverVersion >> 14) & 0xff; in decodeDriverVersion() 408 uint32_t build = (driverVersion >> 6) & 0xff; in decodeDriverVersion() 409 uint32_t revision = driverVersion & 0x3f; in decodeDriverVersion() 415 uint32_t high = driverVersion >> 14; in decodeDriverVersion() 416 uint32_t low = driverVersion & 0x3fff; in decodeDriverVersion() 422 uint32_t major = VK_VERSION_MAJOR(driverVersion); in decodeDriverVersion() 423 uint32_t minor = VK_VERSION_MINOR(driverVersion); in decodeDriverVersion() 424 uint32_t patch = VK_VERSION_PATCH(driverVersion); in decodeDriverVersion() [all …]
|
D | VkCommonOperations.h | 219 std::string driverVersion; member
|
D | VkDecoderGlobalState.h | 423 uint32_t driverVersion = 0; member
|
D | VkDecoderGlobalState.cpp | 4726 res.driverVersion = props.driverVersion; in getHostFeatureSupport()
|
/hardware/google/gfxstream/host/tests/ |
D | Vulkan_unittest.cpp | 109 ss << "Driver version: " << std::hex << props.driverVersion << "\n"; in getPhysicalDevicePropertiesString()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/ |
D | VK_EXT_device_fault.adoc | 184 uint32_t driverVersion;
|
/hardware/google/aemu/third-party/cuda/include/host-common/ |
D | dynlink_cuda_cuda.h | 1166 typedef CUresult CUDAAPI tcuDriverGetVersion(int *driverVersion);
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/ |
D | debugging.adoc | 450 * pname:driverVersion is the 451 sname:VkPhysicalDeviceProperties::pname:driverVersion of the
|
D | devsandqueues.adoc | 79 * pname:driverVersion is the vendor-specified version of the driver. 118 The encoding of pname:driverVersion is implementation-defined. 121 the version information from pname:driverVersion.
|
/hardware/google/gfxstream/scripts/print_gfx_logs/ |
D | vulkan_printer.py | 863 driverVersion = printer.write_int("driverVersion", 4, indent, signed=False, big_endian=False)
|
/hardware/google/gfxstream/host/ |
D | FrameBuffer.cpp | 394 << vkEmu->deviceInfo.driverVersion; in initialize()
|
/hardware/google/gfxstream/guest/mesa/include/vulkan/ |
D | vulkan_core.h | 3199 uint32_t driverVersion; member 15508 uint32_t driverVersion; member
|
/hardware/google/gfxstream/common/vulkan/include/vulkan/ |
D | vulkan_core.h | 3231 uint32_t driverVersion; member 15545 uint32_t driverVersion; member
|
D | vulkansc_structs.hpp | 34142 …: apiVersion( apiVersion_ ), driverVersion( driverVersion_ ), vendorID( vendorID_ ), deviceID( dev… 34180 …return std::tie( apiVersion, driverVersion, vendorID, deviceID, deviceType, deviceName, pipelineCa… in reflect() 34194 && ( driverVersion == rhs.driverVersion ) in operator ==() 34213 uint32_t driverVersion = {}; member
|
D | vulkan_structs.hpp | 25650 …sion( headerVersion_ ), vendorID( vendorID_ ), deviceID( deviceID_ ), driverVersion( driverVersion… 25696 driverVersion = driverVersion_; in setDriverVersion() 25756 …return std::tie( headerSize, headerVersion, vendorID, deviceID, driverVersion, pipelineCacheUUID, … in reflect() 25773 && ( driverVersion == rhs.driverVersion ) in operator ==() 25794 uint32_t driverVersion = {}; member 71189 …: apiVersion( apiVersion_ ), driverVersion( driverVersion_ ), vendorID( vendorID_ ), deviceID( dev… 71227 …return std::tie( apiVersion, driverVersion, vendorID, deviceID, deviceType, deviceName, pipelineCa… in reflect() 71241 && ( driverVersion == rhs.driverVersion ) in operator ==() 71260 uint32_t driverVersion = {}; member
|
D | vulkan_hash.hpp | 3350 VULKAN_HPP_HASH_COMBINE( seed, deviceFaultVendorBinaryHeaderVersionOneEXT.driverVersion ); in operator ()() 9338 VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.driverVersion ); in operator ()()
|
D | vulkansc_hash.hpp | 4768 VULKAN_HPP_HASH_COMBINE( seed, physicalDeviceProperties.driverVersion ); in operator ()()
|
/hardware/google/gfxstream/guest/vulkan_enc/ |
D | goldfish_vk_marshaling_guest.cpp | 1079 vkStream->write((uint32_t*)&forMarshaling->driverVersion, sizeof(uint32_t)); in marshal_VkPhysicalDeviceProperties() 1097 vkStream->read((uint32_t*)&forUnmarshaling->driverVersion, sizeof(uint32_t)); in unmarshal_VkPhysicalDeviceProperties()
|
D | goldfish_vk_reserved_marshaling_guest.cpp | 926 memcpy(*ptr, (uint32_t*)&forMarshaling->driverVersion, sizeof(uint32_t)); in reservedmarshal_VkPhysicalDeviceProperties()
|
/hardware/google/gfxstream/host/vulkan/cereal/common/ |
D | goldfish_vk_marshaling.cpp | 1140 vkStream->write((uint32_t*)&forMarshaling->driverVersion, sizeof(uint32_t)); in marshal_VkPhysicalDeviceProperties() 1158 vkStream->read((uint32_t*)&forUnmarshaling->driverVersion, sizeof(uint32_t)); in unmarshal_VkPhysicalDeviceProperties()
|
D | goldfish_vk_reserved_marshaling.cpp | 911 memcpy((uint32_t*)&forUnmarshaling->driverVersion, *ptr, sizeof(uint32_t)); in reservedunmarshal_VkPhysicalDeviceProperties()
|