allocated_queues  396 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 		if (dqm->allocated_queues[pipe] != 0) {
allocated_queues  397 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 			bit = ffs(dqm->allocated_queues[pipe]) - 1;
allocated_queues  398 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 			dqm->allocated_queues[pipe] &= ~(1 << bit);
allocated_queues  419 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	dqm->allocated_queues[q->pipe] |= (1 << q->queue);
allocated_queues  862 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	dqm->allocated_queues = kcalloc(get_pipes_per_mec(dqm),
allocated_queues  864 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	if (!dqm->allocated_queues)
allocated_queues  879 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 				dqm->allocated_queues[pipe] |= 1 << queue;
allocated_queues  895 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c 	kfree(dqm->allocated_queues);
allocated_queues  185 drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.h 	unsigned int		*allocated_queues;