Home
last modified time | relevance | path

Searched refs:this_end (Results 1 – 2 of 2) sorted by relevance

/mm/
Dmemtest.c69 phys_addr_t this_start, this_end; in do_one_pass() local
72 &this_end, NULL) { in do_one_pass()
74 this_end = clamp(this_end, start, end); in do_one_pass()
75 if (this_start < this_end) { in do_one_pass()
77 &this_start, &this_end, cpu_to_be64(pattern)); in do_one_pass()
78 memtest(pattern, this_start, this_end - this_start); in do_one_pass()
Dmemblock.c196 phys_addr_t this_start, this_end, cand; in __memblock_find_range_bottom_up() local
199 for_each_free_mem_range(i, nid, flags, &this_start, &this_end, NULL) { in __memblock_find_range_bottom_up()
201 this_end = clamp(this_end, start, end); in __memblock_find_range_bottom_up()
204 if (cand < this_end && this_end - cand >= size) in __memblock_find_range_bottom_up()
231 phys_addr_t this_start, this_end, cand; in __memblock_find_range_top_down() local
234 for_each_free_mem_range_reverse(i, nid, flags, &this_start, &this_end, in __memblock_find_range_top_down()
237 this_end = clamp(this_end, start, end); in __memblock_find_range_top_down()
239 if (this_end < size) in __memblock_find_range_top_down()
242 cand = round_down(this_end - size, align); in __memblock_find_range_top_down()