Lines Matching refs:temp_start
423 unsigned long temp_start, temp_end; in locate_mem_hole_top_down() local
426 temp_start = temp_end - kbuf->memsz; in locate_mem_hole_top_down()
430 temp_start = temp_start & (~(kbuf->buf_align - 1)); in locate_mem_hole_top_down()
432 if (temp_start < start || temp_start < kbuf->buf_min) in locate_mem_hole_top_down()
435 temp_end = temp_start + kbuf->memsz - 1; in locate_mem_hole_top_down()
441 if (kimage_is_destination_range(image, temp_start, temp_end)) { in locate_mem_hole_top_down()
442 temp_start = temp_start - PAGE_SIZE; in locate_mem_hole_top_down()
451 kbuf->mem = temp_start; in locate_mem_hole_top_down()
461 unsigned long temp_start, temp_end; in locate_mem_hole_bottom_up() local
463 temp_start = max(start, kbuf->buf_min); in locate_mem_hole_bottom_up()
466 temp_start = ALIGN(temp_start, kbuf->buf_align); in locate_mem_hole_bottom_up()
467 temp_end = temp_start + kbuf->memsz - 1; in locate_mem_hole_bottom_up()
475 if (kimage_is_destination_range(image, temp_start, temp_end)) { in locate_mem_hole_bottom_up()
476 temp_start = temp_start + PAGE_SIZE; in locate_mem_hole_bottom_up()
485 kbuf->mem = temp_start; in locate_mem_hole_bottom_up()