Searched refs:load_buf (Results 1 – 3 of 3) sorted by relevance
| /u-boot/boot/ |
| A D | image.c | 444 void *load_buf, void *image_buf, ulong image_len, in image_decomp() argument 463 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); in image_decomp() 469 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in image_decomp() 480 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, in image_decomp() 489 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len, in image_decomp() 498 ret = lzop_decompress(image_buf, image_len, load_buf, &size); in image_decomp() 506 ret = ulz4fn(image_buf, image_len, load_buf, &size); in image_decomp() 515 abuf_init_set(&out, load_buf, unc_len); in image_decomp()
|
| A D | bootm.c | 425 void *load_buf, *image_buf; in bootm_load_os() local 428 load_buf = map_sysmem(load, 0); in bootm_load_os() 431 load_buf, image_buf, image_len, in bootm_load_os() 1035 void *load_buf; in bootm_host_load_image() local 1057 load_buf = malloc(buf_size); in bootm_host_load_image() 1058 ret = image_decomp(image_comp, 0, data, image_type, load_buf, in bootm_host_load_image() 1060 free(load_buf); in bootm_host_load_image()
|
| /u-boot/include/ |
| A D | image.h | 944 void *load_buf, void *image_buf, ulong image_len,
|
Completed in 13 milliseconds