Searched refs:readStream (Results 1 – 5 of 5) sorted by relevance
/hardware/google/gfxstream/host/vulkan/ |
D | VkSubDecoder.cpp | 37 size_t subDecode(VulkanMemReadingStream* readStream, VulkanDispatch* vk, void* boxed_dispatchHandle, in subDecode() argument 43 android::base::BumpPool* pool = readStream->pool(); in subDecode() 59 readStream->setBuf((uint8_t*)(ptr + 8)); in subDecode() 60 uint8_t* readStreamPtr = readStream->getBuf(); in subDecode() 70 reservedunmarshal_VkCommandBufferBeginInfo(readStream, VK_STRUCTURE_TYPE_MAX_ENUM, in subDecode() 151 readStream->alloc((void**)&pViewports, in subDecode() 155 reservedunmarshal_VkViewport(readStream, VK_STRUCTURE_TYPE_MAX_ENUM, in subDecode() 183 readStream->alloc((void**)&pScissors, in subDecode() 187 reservedunmarshal_VkRect2D(readStream, VK_STRUCTURE_TYPE_MAX_ENUM, in subDecode() 331 readStream->alloc((void**)&pDescriptorSets, in subDecode() [all …]
|
D | VulkanBoxedHandles.h | 74 VulkanMemReadingStream* readStream = nullptr; variable
|
D | VulkanBoxedHandles.cpp | 345 info.readStream = nullptr; in new_boxed_VkType() 363 if (info->readStream) { in delete_VkType() 364 sReadStreamRegistry.push(info->readStream); in delete_VkType() 365 info->readStream = nullptr; in delete_VkType() 500 if (info->readStream == nullptr) { in get_read_stream_VkType() 501 info->readStream = sReadStreamRegistry.pop(VkDecoderGlobalState::get()->getFeatures()); in get_read_stream_VkType() 504 return info->readStream; in get_read_stream_VkType()
|
D | VkDecoder.cpp | 83 VulkanMemReadingStream* readStream() { return &m_vkMemReadingStream; } in readStream() function in gfxstream::vk::VkDecoder::Impl 147 VulkanMemReadingStream* vkReadStream = readStream(); in decode() 1918 uint64_t readStream = 0; in decode() local 1919 memcpy(&readStream, *readStreamPtrPtr, sizeof(uint64_t)); in decode() 1923 if (!hostPtr && readStream > 0) in decode() 1926 if (sizeLeft < readStream) { in decode() 1933 sizeLeft -= readStream; in decode() 1935 memcpy(targetRange, *readStreamPtrPtr, readStream); in decode() 1936 *readStreamPtrPtr += readStream; in decode() 1937 packetLen += 8 + readStream; in decode()
|
D | VkDecoderGlobalState.cpp | 7445 VulkanMemReadingStream* readStream = readstream_VkCommandBuffer(boxed_commandBuffer); in on_vkQueueFlushCommandsGOOGLE() local 7446 subDecode(readStream, vk, boxed_commandBuffer, commandBuffer, dataSize, pData, context); in on_vkQueueFlushCommandsGOOGLE()
|