Lines Matching refs:load_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()
448 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, in bootm_decomp_image()
459 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_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
514 load_buf = map_sysmem(load, 0); in bootm_load_os()
517 load_buf, image_buf, image_len, in bootm_load_os()
1010 void *load_buf; in bootm_host_load_image() local
1032 load_buf = malloc((1 << 20) + len * 4); in bootm_host_load_image()
1033 ret = bootm_decomp_image(imape_comp, 0, data, image_type, load_buf, in bootm_host_load_image()
1036 free(load_buf); in bootm_host_load_image()