Lines Matching defs:count

740    uint32_t count;
743 instance, vn_physical_device_to_handle(physical_dev), &count, NULL);
746 vk_alloc(alloc, sizeof(*props) * count, VN_DEFAULT_ALIGN,
751 for (uint32_t i = 0; i < count; i++) {
756 instance, vn_physical_device_to_handle(physical_dev), &count, props);
759 physical_dev->queue_family_count = count;
1073 uint32_t count;
1075 instance, vn_physical_device_to_handle(physical_dev), NULL, &count,
1081 if (count) {
1082 exts = vk_alloc(alloc, sizeof(*exts) * count, VN_DEFAULT_ALIGN,
1088 instance, vn_physical_device_to_handle(physical_dev), NULL, &count,
1108 for (uint32_t j = 0; j < count; j++) {
1222 uint32_t count,
1225 for (uint32_t i = 0; i < count; i++) {
1242 uint32_t count;
1244 &count, NULL);
1249 vk_alloc(alloc, sizeof(*groups) * count, VN_DEFAULT_ALIGN,
1260 vk_zalloc(alloc, sizeof(*temp_objs) * VK_MAX_DEVICE_GROUP_SIZE * count,
1267 for (uint32_t i = 0; i < count; i++) {
1280 &count, groups);
1291 for (uint32_t i = 0; i < count; i++) {
1316 count = supported_count;
1317 assert(count);
1322 instance->physical_device.group_count = count;
1337 uint32_t count;
1339 instance, vn_instance_to_handle(instance), &count, NULL);
1340 if (result != VK_SUCCESS || !count)
1344 vk_zalloc(alloc, sizeof(*physical_devs) * count, VN_DEFAULT_ALIGN,
1349 handles = vk_alloc(alloc, sizeof(*handles) * count, VN_DEFAULT_ALIGN,
1356 for (uint32_t i = 0; i < count; i++) {
1367 count = i;
1377 instance, vn_instance_to_handle(instance), &count, handles);
1383 *out_count = count;
1388 for (uint32_t i = 0; i < count; i++)
1397 uint32_t count)
1400 for (uint32_t i = 0; i < count; i++) {
1424 uint32_t count = 0;
1433 result = enumerate_physical_devices(instance, &physical_devs, &count);
1437 count = filter_physical_devices(physical_devs, count);
1438 if (!count) {
1444 for (uint32_t i = 0; i < count; i++) {
1451 for (uint32_t j = i; j < count; j++)
1459 instance, physical_devs, count);
1461 for (uint32_t i = 0; i < count; i++)
1468 instance->physical_device.device_count = count;