Lines Matching refs:temp_start
2021 unsigned long temp_start, temp_end; in locate_mem_hole_top_down() local
2024 temp_start = temp_end - kbuf->memsz; in locate_mem_hole_top_down()
2028 temp_start = temp_start & (~(kbuf->buf_align - 1)); in locate_mem_hole_top_down()
2030 if (temp_start < start || temp_start < kbuf->buf_min) in locate_mem_hole_top_down()
2033 temp_end = temp_start + kbuf->memsz - 1; in locate_mem_hole_top_down()
2039 if (kimage_is_destination_range(image, temp_start, temp_end)) { in locate_mem_hole_top_down()
2040 temp_start = temp_start - PAGE_SIZE; in locate_mem_hole_top_down()
2049 kbuf->mem = temp_start; in locate_mem_hole_top_down()
2059 unsigned long temp_start, temp_end; in locate_mem_hole_bottom_up() local
2061 temp_start = max(start, kbuf->buf_min); in locate_mem_hole_bottom_up()
2064 temp_start = ALIGN(temp_start, kbuf->buf_align); in locate_mem_hole_bottom_up()
2065 temp_end = temp_start + kbuf->memsz - 1; in locate_mem_hole_bottom_up()
2073 if (kimage_is_destination_range(image, temp_start, temp_end)) { in locate_mem_hole_bottom_up()
2074 temp_start = temp_start + PAGE_SIZE; in locate_mem_hole_bottom_up()
2083 kbuf->mem = temp_start; in locate_mem_hole_bottom_up()