Searched refs:this_end (Results 1 – 3 of 3) sorted by relevance
| /mm/ |
| A D | memtest.c | 76 phys_addr_t this_start, this_end; in do_one_pass() local 79 &this_end, NULL) { in do_one_pass() 81 this_end = clamp(this_end, start, end); in do_one_pass() 82 if (this_start < this_end) { in do_one_pass() 84 &this_start, &this_end, cpu_to_be64(pattern)); in do_one_pass() 85 memtest(pattern, this_start, this_end - this_start); in do_one_pass()
|
| A D | highmem.c | 422 unsigned this_end = min_t(unsigned, end1, PAGE_SIZE); in zero_user_segments() local 426 memset(kaddr + start1, 0, this_end - start1); in zero_user_segments() 428 end1 -= this_end; in zero_user_segments() 436 unsigned this_end = min_t(unsigned, end2, PAGE_SIZE); in zero_user_segments() local 441 memset(kaddr + start2, 0, this_end - start2); in zero_user_segments() 443 end2 -= this_end; in zero_user_segments()
|
| A D | memblock.c | 238 phys_addr_t this_start, this_end, cand; in __memblock_find_range_bottom_up() local 241 for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) { in __memblock_find_range_bottom_up() 243 this_end = clamp(this_end, start, end); in __memblock_find_range_bottom_up() 246 if (cand < this_end && this_end - cand >= size) in __memblock_find_range_bottom_up() 273 phys_addr_t this_start, this_end, cand; in __memblock_find_range_top_down() local 276 for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end, in __memblock_find_range_top_down() 279 this_end = clamp(this_end, start, end); in __memblock_find_range_top_down() 281 if (this_end < size) in __memblock_find_range_top_down() 284 cand = round_down(this_end - size, align); in __memblock_find_range_top_down()
|
Completed in 13 milliseconds