Searched refs:load_buf (Results 1 – 3 of 3) sorted by relevance
/u-boot/common/ |
A D | bootm.c | 387 void *load_buf, *image_buf; in bootm_load_os() local 390 load_buf = map_sysmem(load, 0); in bootm_load_os() 393 load_buf, image_buf, image_len, in bootm_load_os() 976 void *load_buf; in bootm_host_load_image() local 999 load_buf = malloc((1 << 20) + len * 4); in bootm_host_load_image() 1000 ret = image_decomp(imape_comp, 0, data, image_type, load_buf, in bootm_host_load_image() 1003 free(load_buf); in bootm_host_load_image()
|
A D | image.c | 443 void *load_buf, void *image_buf, ulong image_len, in image_decomp() argument 461 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); in image_decomp() 468 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in image_decomp() 483 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, in image_decomp() 496 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len, in image_decomp() 508 ret = lzop_decompress(image_buf, image_len, load_buf, &size); in image_decomp() 519 ret = ulz4fn(image_buf, image_len, load_buf, &size); in image_decomp() 553 out_buf.dst = load_buf; in image_decomp()
|
/u-boot/include/ |
A D | image.h | 939 void *load_buf, void *image_buf, ulong image_len,
|
Completed in 11 milliseconds