/kernel/linux/linux-5.10/drivers/media/rc/ |
H A D | ir_toy.c | 71 uint emitted; member 152 u16 emitted = get_unaligned_be16(irtoy->in + 1); in irtoy_response() local 154 dev_dbg(irtoy->dev, "emitted:%u\n", emitted); in irtoy_response() 156 irtoy->emitted = emitted; in irtoy_response() 317 irtoy->emitted = 0; in irtoy_tx() 351 if (size != irtoy->emitted) { in irtoy_tx() 352 dev_err(irtoy->dev, "expected %u emitted, got %u\n", size, in irtoy_tx() 353 irtoy->emitted); in irtoy_tx() [all...] |
/kernel/linux/linux-6.6/drivers/media/rc/ |
H A D | ir_toy.c | 73 uint emitted; member 155 u16 emitted = get_unaligned_be16(irtoy->in + 1); in irtoy_response() local 157 dev_dbg(irtoy->dev, "emitted:%u\n", emitted); in irtoy_response() 159 irtoy->emitted = emitted; in irtoy_response() 325 irtoy->emitted = 0; in irtoy_tx() 359 if (size != irtoy->emitted) { in irtoy_tx() 360 dev_err(irtoy->dev, "expected %u emitted, got %u\n", size, in irtoy_tx() 361 irtoy->emitted); in irtoy_tx() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_fence.c | 367 * amdgpu_fence_count_emitted - get the count of emitted fences 371 * Get the number of fences emitted on the requested ring (all asics). 372 * Returns the number of emitted fences on the ring. Used by the 377 uint64_t emitted; in amdgpu_fence_count_emitted() local 383 emitted = 0x100000000ull; in amdgpu_fence_count_emitted() 384 emitted -= atomic_read(&ring->fence_drv.last_seq); in amdgpu_fence_count_emitted() 385 emitted += READ_ONCE(ring->fence_drv.sync_seq); in amdgpu_fence_count_emitted() 386 return lower_32_bits(emitted); in amdgpu_fence_count_emitted() 717 seq_printf(m, "Last emitted 0x%08x\n", in amdgpu_debugfs_fence_info() 724 seq_printf(m, "Last emitted in amdgpu_debugfs_fence_info() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/ |
H A D | intel_engine_pm.c | 98 rq->duration.emitted)); in duration() 204 rq->duration.emitted = ktime_get(); in switch_to_kernel_context()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_fence.c | 387 * amdgpu_fence_count_emitted - get the count of emitted fences 391 * Get the number of fences emitted on the requested ring (all asics). 392 * Returns the number of emitted fences on the ring. Used by the 397 uint64_t emitted; in amdgpu_fence_count_emitted() local 402 emitted = 0x100000000ull; in amdgpu_fence_count_emitted() 403 emitted -= atomic_read(&ring->fence_drv.last_seq); in amdgpu_fence_count_emitted() 404 emitted += READ_ONCE(ring->fence_drv.sync_seq); in amdgpu_fence_count_emitted() 405 return lower_32_bits(emitted); in amdgpu_fence_count_emitted() 409 * amdgpu_fence_last_unsignaled_time_us - the time fence emitted until now 413 * between the time fence emitted an [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/ |
H A D | radeon_fence.c | 713 * radeon_fence_count_emitted - get the count of emitted fences 718 * Get the number of fences emitted on the requested ring (all asics). 719 * Returns the number of emitted fences on the ring. Used by the 724 uint64_t emitted; in radeon_fence_count_emitted() local 730 emitted = rdev->fence_drv[ring].sync_seq[ring] in radeon_fence_count_emitted() 733 if (emitted > 0x10000000) { in radeon_fence_count_emitted() 734 emitted = 0x10000000; in radeon_fence_count_emitted() 736 return (unsigned)emitted; in radeon_fence_count_emitted() 970 seq_printf(m, "Last emitted 0x%016llx\n", in radeon_debugfs_fence_info_show()
|
/kernel/linux/linux-5.10/fs/vboxsf/ |
H A D | dir.c | 171 bool emitted; in vboxsf_dir_iterate() local 174 emitted = vboxsf_dir_emit(dir, ctx); in vboxsf_dir_iterate() 175 if (emitted) in vboxsf_dir_iterate() 177 } while (emitted); in vboxsf_dir_iterate()
|
/kernel/linux/linux-6.6/fs/vboxsf/ |
H A D | dir.c | 171 bool emitted; in vboxsf_dir_iterate() local 174 emitted = vboxsf_dir_emit(dir, ctx); in vboxsf_dir_iterate() 175 if (emitted) in vboxsf_dir_iterate() 177 } while (emitted); in vboxsf_dir_iterate()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/ |
H A D | intel_engine_pm.c | 105 rq->duration.emitted)); in duration() 232 rq->duration.emitted = ktime_get(); in switch_to_kernel_context()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/ |
H A D | radeon_fence.c | 730 * radeon_fence_count_emitted - get the count of emitted fences 735 * Get the number of fences emitted on the requested ring (all asics). 736 * Returns the number of emitted fences on the ring. Used by the 741 uint64_t emitted; in radeon_fence_count_emitted() local 747 emitted = rdev->fence_drv[ring].sync_seq[ring] in radeon_fence_count_emitted() 750 if (emitted > 0x10000000) { in radeon_fence_count_emitted() 751 emitted = 0x10000000; in radeon_fence_count_emitted() 753 return (unsigned)emitted; in radeon_fence_count_emitted() 992 seq_printf(m, "Last emitted 0x%016llx\n", in radeon_debugfs_fence_info()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | i915_request.h | 144 * The request queue allows us to note sequence numbers that have been emitted 213 ktime_t emitted; member 283 /** Time at which this request was emitted, in jiffies. */
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_request.h | 178 * The request queue allows us to note sequence numbers that have been emitted 249 ktime_t emitted; member 317 /* Time at which this request was emitted, in jiffies. */
|
/kernel/linux/linux-5.10/arch/arm/kernel/ |
H A D | phys2virt.S | 157 @ immediate field of the opcode, which is emitted with the correct
|
/kernel/linux/linux-6.6/arch/arm/kernel/ |
H A D | phys2virt.S | 157 @ immediate field of the opcode, which is emitted with the correct
|