Home
last modified time | relevance | path

Searched refs:profileCount (Results 1 – 15 of 15) sorted by relevance

/device/generic/vulkan-cereal/stream-servers/vulkan/cereal/common/
Dgoldfish_vk_testing.cpp8511 if (!((a->profileCount) == (b->profileCount))) { in checkEqual_VkVideoProfileListInfoKHR()
8515 if (!((a->profileCount) == (b->profileCount))) { in checkEqual_VkVideoProfileListInfoKHR()
8518 if ((a->profileCount) == (b->profileCount)) { in checkEqual_VkVideoProfileListInfoKHR()
8520 for (uint32_t i = 0; i < (uint32_t)a->profileCount; ++i) { in checkEqual_VkVideoProfileListInfoKHR()
Dgoldfish_vk_deepcopy.cpp7102 from->profileCount * sizeof(const VkVideoProfileInfoKHR)); in deepcopy_VkVideoProfileListInfoKHR()
7103 to->profileCount = from->profileCount; in deepcopy_VkVideoProfileListInfoKHR()
7104 for (uint32_t i = 0; i < (uint32_t)from->profileCount; ++i) { in deepcopy_VkVideoProfileListInfoKHR()
Dgoldfish_vk_transform.cpp6642 for (uint32_t i = 0; i < (uint32_t)toTransform->profileCount; ++i) { in transform_tohost_VkVideoProfileListInfoKHR()
6659 for (uint32_t i = 0; i < (uint32_t)toTransform->profileCount; ++i) { in transform_fromhost_VkVideoProfileListInfoKHR()
Dgoldfish_vk_handlemap.cpp3301 for (uint32_t i = 0; i < (uint32_t)toMap->profileCount; ++i) { in handlemap_VkVideoProfileListInfoKHR()
Dgoldfish_vk_marshaling.cpp14547 vkStream->write((uint32_t*)&forMarshaling->profileCount, sizeof(uint32_t)); in marshal_VkVideoProfileListInfoKHR()
14549 for (uint32_t i = 0; i < (uint32_t)forMarshaling->profileCount; ++i) { in marshal_VkVideoProfileListInfoKHR()
14576 vkStream->read((uint32_t*)&forUnmarshaling->profileCount, sizeof(uint32_t)); in unmarshal_VkVideoProfileListInfoKHR()
14578 forUnmarshaling->profileCount * sizeof(const VkVideoProfileInfoKHR)); in unmarshal_VkVideoProfileListInfoKHR()
14580 for (uint32_t i = 0; i < (uint32_t)forUnmarshaling->profileCount; ++i) { in unmarshal_VkVideoProfileListInfoKHR()
Dgoldfish_vk_reserved_marshaling.cpp11220 memcpy((uint32_t*)&forUnmarshaling->profileCount, *ptr, sizeof(uint32_t)); in reservedunmarshal_VkVideoProfileListInfoKHR()
11223 forUnmarshaling->profileCount * sizeof(const VkVideoProfileInfoKHR)); in reservedunmarshal_VkVideoProfileListInfoKHR()
11224 for (uint32_t i = 0; i < (uint32_t)forUnmarshaling->profileCount; ++i) { in reservedunmarshal_VkVideoProfileListInfoKHR()
/device/generic/goldfish-opengl/system/vulkan_enc/
Dgoldfish_vk_deepcopy_guest.cpp7102 from->profileCount * sizeof(const VkVideoProfileInfoKHR)); in deepcopy_VkVideoProfileListInfoKHR()
7103 to->profileCount = from->profileCount; in deepcopy_VkVideoProfileListInfoKHR()
7104 for (uint32_t i = 0; i < (uint32_t)from->profileCount; ++i) { in deepcopy_VkVideoProfileListInfoKHR()
Dgoldfish_vk_transform_guest.cpp6588 for (uint32_t i = 0; i < (uint32_t)toTransform->profileCount; ++i) { in transform_tohost_VkVideoProfileListInfoKHR()
6605 for (uint32_t i = 0; i < (uint32_t)toTransform->profileCount; ++i) { in transform_fromhost_VkVideoProfileListInfoKHR()
Dgoldfish_vk_handlemap_guest.cpp3301 for (uint32_t i = 0; i < (uint32_t)toMap->profileCount; ++i) { in handlemap_VkVideoProfileListInfoKHR()
Dgoldfish_vk_marshaling_guest.cpp11729 vkStream->write((uint32_t*)&forMarshaling->profileCount, sizeof(uint32_t)); in marshal_VkVideoProfileListInfoKHR()
11731 for (uint32_t i = 0; i < (uint32_t)forMarshaling->profileCount; ++i) { in marshal_VkVideoProfileListInfoKHR()
11746 vkStream->read((uint32_t*)&forUnmarshaling->profileCount, sizeof(uint32_t)); in unmarshal_VkVideoProfileListInfoKHR()
11748 for (uint32_t i = 0; i < (uint32_t)forUnmarshaling->profileCount; ++i) { in unmarshal_VkVideoProfileListInfoKHR()
Dgoldfish_vk_reserved_marshaling_guest.cpp7935 memcpy(*ptr, (uint32_t*)&forMarshaling->profileCount, sizeof(uint32_t)); in reservedmarshal_VkVideoProfileListInfoKHR()
7937 for (uint32_t i = 0; i < (uint32_t)forMarshaling->profileCount; ++i) { in reservedmarshal_VkVideoProfileListInfoKHR()
Dgoldfish_vk_counting_guest.cpp6212 for (uint32_t i = 0; i < (uint32_t)toCount->profileCount; ++i) { in count_VkVideoProfileListInfoKHR()
/device/google/cuttlefish/host/libs/graphics_detector/include/vulkan/
Dvulkan_structs.hpp99767 : pNext( pNext_ ), profileCount( profileCount_ ), pProfiles( pProfiles_ )
99778 …: pNext( pNext_ ), profileCount( static_cast<uint32_t>( profiles_.size() ) ), pProfiles( profiles_… in VideoProfileListInfoKHR()
99801 profileCount = profileCount_; in setProfileCount()
99814 profileCount = static_cast<uint32_t>( profiles_.size() ); in setProfiles()
99840 return std::tie( sType, pNext, profileCount, pProfiles ); in reflect()
99855 && ( profileCount == rhs.profileCount ) in operator ==()
99869 uint32_t profileCount = {}; member
Dvulkan_core.h7935 uint32_t profileCount; member
Dvulkan_hash.hpp13068 VULKAN_HPP_HASH_COMBINE( seed, videoProfileListInfoKHR.profileCount ); in operator ()()