HomeSort by: relevance | last modified time | path
    Searched refs:pages_count (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_vma_types.h 265 atomic_t pages_count; /* number of active binds to the pages */ member in struct:i915_vma
i915_vma.c 872 if (atomic_add_unless(&vma->pages_count, 1, 0))
879 if (!atomic_read(&vma->pages_count)) {
893 atomic_inc(&vma->pages_count);
905 GEM_BUG_ON(atomic_read(&vma->pages_count) < count);
906 if (atomic_sub_return(count, &vma->pages_count) == 0) {
917 if (atomic_add_unless(&vma->pages_count, -1, 1))
929 /* The upper portion of pages_count is the number of bindings */
930 count = atomic_read(&vma->pages_count);
1012 atomic_add(I915_VMA_PAGES_ACTIVE, &vma->pages_count);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_stolen.c 844 atomic_set(&vma->pages_count, I915_VMA_PAGES_ACTIVE);
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
i915_gem_gtt.c 1241 atomic_set(&vma->pages_count, I915_VMA_PAGES_ACTIVE);

Completed in 15 milliseconds