Lines Matching refs:pPoolNode

4112 …criptor_availability_in_pool(layer_data *dev_data, DESCRIPTOR_POOL_NODE *pPoolNode, uint32_t count,  in validate_descriptor_availability_in_pool()  argument
4119 if (pPoolNode->availableSets < count) { in validate_descriptor_availability_in_pool()
4121 … reinterpret_cast<uint64_t &>(pPoolNode->pool), __LINE__, DRAWSTATE_DESCRIPTOR_POOL_EMPTY, "DS", in validate_descriptor_availability_in_pool()
4124 … count, reinterpret_cast<uint64_t &>(pPoolNode->pool), pPoolNode->availableSets); in validate_descriptor_availability_in_pool()
4126 pPoolNode->availableSets -= count; in validate_descriptor_availability_in_pool()
4142 if (poolSizeCount > pPoolNode->availableDescriptorTypeCount[typeIndex]) { in validate_descriptor_availability_in_pool()
4149 … (uint64_t)pPoolNode->pool, pPoolNode->availableDescriptorTypeCount[typeIndex]); in validate_descriptor_availability_in_pool()
4151 pPoolNode->availableDescriptorTypeCount[typeIndex] -= poolSizeCount; in validate_descriptor_availability_in_pool()
6730 DESCRIPTOR_POOL_NODE *pPoolNode = getPoolNode(dev_data, pAllocateInfo->descriptorPool); in vkAllocateDescriptorSets() local
6731 if (!pPoolNode) { in vkAllocateDescriptorSets()
6737 …skipCall |= validate_descriptor_availability_in_pool(dev_data, pPoolNode, pAllocateInfo->descripto… in vkAllocateDescriptorSets()
6746 DESCRIPTOR_POOL_NODE *pPoolNode = getPoolNode(dev_data, pAllocateInfo->descriptorPool); in vkAllocateDescriptorSets() local
6747 if (pPoolNode) { in vkAllocateDescriptorSets()
6770 pNewNode->pNext = pPoolNode->pSets; in vkAllocateDescriptorSets()
6772 pPoolNode->pSets = pNewNode; in vkAllocateDescriptorSets()
6809 DESCRIPTOR_POOL_NODE *pPoolNode = getPoolNode(dev_data, descriptorPool); in vkFreeDescriptorSets() local
6810 …if (pPoolNode && !(VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT & pPoolNode->createInfo.flags… in vkFreeDescriptorSets()
6825 pPoolNode->availableSets += count; in vkFreeDescriptorSets()
6836 pPoolNode->availableDescriptorTypeCount[typeIndex] += poolSizeCount; in vkFreeDescriptorSets()