Lines Matching refs:image_buf
357 void *load_buf, void *image_buf, ulong image_len, in bootm_decomp_image() argument
375 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); in bootm_decomp_image()
381 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in bootm_decomp_image()
395 image_buf, image_len, in bootm_decomp_image()
406 image_buf, image_len); in bootm_decomp_image()
415 ret = lzop_decompress(image_buf, image_len, load_buf, &size); in bootm_decomp_image()
424 ret = ulz4fn(image_buf, image_len, load_buf, &size); in bootm_decomp_image()
456 void *load_buf, *image_buf; in bootm_load_os() local
460 image_buf = map_sysmem(os.image_start, image_len); in bootm_load_os()
462 load_buf, image_buf, image_len, in bootm_load_os()
611 void *image_buf; in bootm_measure() local
622 image_buf = map_sysmem(images->os.image_start, in bootm_measure()
625 image_buf, EV_COMPACT_HASH, in bootm_measure()
659 unmap_sysmem(image_buf); in bootm_measure()