HomeSort by: relevance | last modified time | path
    Searched defs:emitted (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_fence.c 366 * amdgpu_fence_count_emitted - get the count of emitted fences
370 * Get the number of fences emitted on the requested ring (all asics).
371 * Returns the number of emitted fences on the ring. Used by the
376 uint64_t emitted; local in function:amdgpu_fence_count_emitted
382 emitted = 0x100000000ull;
383 emitted -= atomic_read(&ring->fence_drv.last_seq);
384 emitted += READ_ONCE(ring->fence_drv.sync_seq);
385 return lower_32_bits(emitted);
718 seq_printf(m, "Last emitted 0x%08x\n",
725 seq_printf(m, "Last emitted 0x%08x\n"
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_request.h 138 * The request queue allows us to note sequence numbers that have been emitted
212 ktime_t emitted; member in struct:i915_request::__anon6fb5366b020a::i915_request_duration_cb
282 /** Time at which this request was emitted, in jiffies. */
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_fence.c 782 * radeon_fence_count_emitted - get the count of emitted fences
787 * Get the number of fences emitted on the requested ring (all asics).
788 * Returns the number of emitted fences on the ring. Used by the
793 uint64_t emitted; local in function:radeon_fence_count_emitted
799 emitted = rdev->fence_drv[ring].sync_seq[ring]
802 if (emitted > 0x10000000) {
803 emitted = 0x10000000;
805 return (unsigned)emitted;
1052 seq_printf(m, "Last emitted 0x%016"PRIx64"\n",

Completed in 12 milliseconds