Lines Matching defs:count
76 // obtained at runtime and a remaining number of descriptors, which starts with the same count and decreases
92 // descriptor count assignment if more descriptors can be added to the type without hitting any limit affected
98 : type(type_), alive(true), count(0u)
103 deUint32 count;
160 // Distribute remaining count evenly among alive types.
197 // Increase type count.
200 iter->second.count += increment;
395 tc.second.count = de::min(tc.second.count, maxReasonableBindingCounts);
410 b.descriptorCount = tc.second.count;
422 bindings.resize(firstAdded + tc.second.count);
423 for (deUint32 i = 0u; i < tc.second.count; ++i)
433 bindingNumber += tc.second.count;
444 deUint32 count;
451 count = ((b.descriptorType == vk::VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT) ? 1u : b.descriptorCount);
453 count = b.descriptorCount;
455 iter->second += count;
456 totalCount += count;