/src/sys/external/bsd/drm2/dist/drm/ |
drm_mm.c | 447 u64 hole_start; local in function:find_hole 450 hole_start = __drm_mm_hole_node_start(node); 452 if (addr < hole_start) 454 else if (addr > hole_start + node->hole_size) 538 u64 hole_start, hole_end; local in function:drm_mm_reserve_node 550 adj_start = hole_start = __drm_mm_hole_node_start(hole); 551 adj_end = hole_end = hole_start + hole->hole_size; 569 if (node->start > hole_start) 629 u64 hole_start = __drm_mm_hole_node_start(hole); local in function:drm_mm_insert_node_in_range 630 u64 hole_end = hole_start + hole->hole_size 879 u64 hole_start, hole_end; local in function:drm_mm_scan_add_block 1010 u64 hole_start, hole_end; local in function:drm_mm_scan_color_evict [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
i915_gem_gtt.c | 216 u64 hole_start, u64 hole_end, 228 for (size = 12; (hole_end - hole_start) >> size; size++) { 234 hole_size = (hole_end - hole_start) >> size; 240 __func__, hole_start, hole_end, size, hole_size); 256 GEM_BUG_ON(hole_start + count * BIT_ULL(size) > hole_end); 279 u64 addr = hole_start + order[n] * BIT_ULL(size); 287 hole_end = hole_start; /* quit */ 307 u64 addr = hole_start + order[n] * BIT_ULL(size); 349 u64 hole_start, u64 hole_end, 352 const u64 hole_size = hole_end - hole_start; 1087 u64 hole_start, hole_end, last = 0; local in function:exercise_ggtt [all...] |
/src/sys/external/bsd/drm2/dist/drm/selftests/ |
test-drm_mm.c | 61 u64 hole_start, hole_end; local in function:assert_no_holes 65 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) 85 u64 hole_start, hole_end; local in function:assert_one_hole 93 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) { 94 if (start != hole_start || end != hole_end) { 97 hole_start, hole_end, 1157 u64 hole_start, hole_end; local in function:show_holes 1160 drm_mm_for_each_hole(hole, mm, hole_start, hole_end) { 1176 hole_start, hole_end, hole_end - hole_start, [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_ggtt.c | 635 unsigned long hole_start, hole_end; local in function:init_ggtt 675 drm_mm_for_each_hole(entry, &ggtt->vm.mm, hole_start, hole_end) { 677 hole_start, hole_end); 678 ggtt->vm.clear_range(&ggtt->vm, hole_start, 679 hole_end - hole_start);
|
/src/sys/arch/sun2/sun2/ |
pmap.c | 201 static vaddr_t hole_start, hole_size; variable in typeref:typename:vaddr_t 1768 b = atop(hole_start); 1770 c = atop(hole_start + hole_size);
|
/src/sys/arch/sun3/sun3/ |
pmap.c | 211 static vaddr_t hole_start, hole_size; variable in typeref:typename:vaddr_t 1544 hole_start = m68k_trunc_page(OBMEM_BW50_ADDR); 1546 if (avail_start > hole_start) { 1800 b = atop(hole_start); 1802 c = atop(hole_start + hole_size);
|
/src/sys/arch/sparc64/sparc64/ |
pmap.c | 3793 const vaddr_t hole_start = 0x000007ffffffffff; local in function:sparc64_mmap_range_test 3798 if (eaddr <= hole_start)
|