Lines Matching refs:image_buf
410 void *load_buf, void *image_buf, ulong image_len, in bootm_decomp_image() argument
417 (ulong)image_buf, (ulong)load_buf); in bootm_decomp_image()
429 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); in bootm_decomp_image()
435 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in bootm_decomp_image()
449 image_buf, image_len, in bootm_decomp_image()
460 image_buf, image_len); in bootm_decomp_image()
469 ret = lzop_decompress(image_buf, image_len, load_buf, &size); in bootm_decomp_image()
478 ret = ulz4fn(image_buf, image_len, load_buf, &size); in bootm_decomp_image()
511 void *load_buf, *image_buf; in bootm_load_os() local
515 image_buf = map_sysmem(os.image_start, image_len); in bootm_load_os()
517 load_buf, image_buf, image_len, in bootm_load_os()