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

  /src/sys/external/bsd/drm/dist/bsd-core/
ati_pcigart.c 236 int max_pages; local in function:drm_ati_pcigart_init
264 max_pages = (gart_info->table_size / sizeof(u32));
265 pages = (dev->sg->pages <= max_pages)
266 ? dev->sg->pages : max_pages;
268 memset(pci_gart, 0, max_pages * sizeof(u32));
  /src/sys/external/bsd/drm2/dist/drm/r128/
ati_pcigart.c 72 int max_pages; local in function:drm_ati_pcigart_cleanup
82 max_pages = (gart_info->table_size / sizeof(u32));
83 pages = (entry->pages <= max_pages)
84 ? entry->pages : max_pages;
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
intel_memory_region.c 56 unsigned long max_pages; local in function:igt_mock_fill
62 max_pages = div64_u64(total, page_size);
65 for_each_prime_number_from(page_num, 1, max_pages) {
i915_vma.c 509 const unsigned int max_pages = 64; local in function:igt_vma_rotate_remap
516 obj = i915_gem_object_create_internal(vm->i915, max_pages * PAGE_SIZE);
528 GEM_BUG_ON(max_offset > max_pages);
529 max_offset = max_pages - max_offset;
i915_gem_gtt.c 354 const unsigned long max_pages = local in function:fill_hole
356 const unsigned long max_step = max(int_sqrt(max_pages), 2UL);
369 for (npages = 1; npages <= max_pages; npages *= prime) {
564 const unsigned long max_pages = local in function:walk_hole
575 for_each_prime_number_from(size, 1, max_pages) {
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
huge_pages.c 695 unsigned long max_pages = ppgtt->vm.total >> PAGE_SHIFT; local in function:igt_mock_ppgtt_huge_fill
702 for_each_prime_number_from(page_num, 1, max_pages) {
  /src/sys/external/bsd/drm/dist/shared-core/
r600_cp.c 128 int max_pages; local in function:r600_page_table_cleanup
138 max_pages = (gart_info->table_size / sizeof(u64));
139 pages = (entry->pages <= max_pages)
140 ? entry->pages : max_pages;
162 int max_pages, pages; local in function:r600_page_table_init
171 max_pages = (gart_info->table_size / sizeof(u64));
172 pages = (entry->pages <= max_pages) ? entry->pages : max_pages;
174 memset(pci_gart, 0, max_pages * sizeof(u64));
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
domctl.h 107 uint64_aligned_t max_pages; member in struct:xen_domctl_getdomaininfo

Completed in 172 milliseconds