Searched refs:load_buf (Results 1 – 2 of 2) sorted by relevance
/external/u-boot/common/ |
D | bootm.c | 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() [all …]
|
/external/u-boot/include/ |
D | bootm.h | 72 void *load_buf, void *image_buf, ulong image_len,
|