Home
last modified time | relevance | path

Searched refs:load_buf (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/common/
H A Dbootm.c357 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()
394 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, in bootm_decomp_image()
405 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_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
459 load_buf = map_sysmem(load, 0); in bootm_load_os()
462 load_buf, image_buf, image_len, in bootm_load_os()
[all …]
/openbmc/u-boot/include/
H A Dbootm.h85 void *load_buf, void *image_buf, ulong image_len,