Lines Matching refs:temp_start
414 unsigned long temp_start, temp_end; in locate_mem_hole_top_down() local
417 temp_start = temp_end - kbuf->memsz; in locate_mem_hole_top_down()
421 temp_start = temp_start & (~(kbuf->buf_align - 1)); in locate_mem_hole_top_down()
423 if (temp_start < start || temp_start < kbuf->buf_min) in locate_mem_hole_top_down()
426 temp_end = temp_start + kbuf->memsz - 1; in locate_mem_hole_top_down()
432 if (kimage_is_destination_range(image, temp_start, temp_end)) { in locate_mem_hole_top_down()
433 temp_start = temp_start - PAGE_SIZE; in locate_mem_hole_top_down()
442 kbuf->mem = temp_start; in locate_mem_hole_top_down()
452 unsigned long temp_start, temp_end; in locate_mem_hole_bottom_up() local
454 temp_start = max(start, kbuf->buf_min); in locate_mem_hole_bottom_up()
457 temp_start = ALIGN(temp_start, kbuf->buf_align); in locate_mem_hole_bottom_up()
458 temp_end = temp_start + kbuf->memsz - 1; in locate_mem_hole_bottom_up()
466 if (kimage_is_destination_range(image, temp_start, temp_end)) { in locate_mem_hole_bottom_up()
467 temp_start = temp_start + PAGE_SIZE; in locate_mem_hole_bottom_up()
476 kbuf->mem = temp_start; in locate_mem_hole_bottom_up()