Lines Matching refs:load_buf
359 void *load_buf, void *image_buf, ulong image_len, in bootm_decomp_image() argument
377 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); in bootm_decomp_image()
383 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in bootm_decomp_image()
396 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, in bootm_decomp_image()
407 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len, in bootm_decomp_image()
417 ret = lzop_decompress(image_buf, image_len, load_buf, &size); in bootm_decomp_image()
426 ret = ulz4fn(image_buf, image_len, load_buf, &size); in bootm_decomp_image()
458 void *load_buf, *image_buf; in bootm_load_os() local
461 load_buf = map_sysmem(load, 0); in bootm_load_os()
464 load_buf, image_buf, image_len, in bootm_load_os()
934 void *load_buf; in bootm_host_load_image() local
956 load_buf = malloc((1 << 20) + len * 4); in bootm_host_load_image()
957 ret = bootm_decomp_image(imape_comp, 0, data, image_type, load_buf, in bootm_host_load_image()
960 free(load_buf); in bootm_host_load_image()