Searched refs:load_buf (Results 1 – 2 of 2) sorted by relevance
| /boot/ |
| A D | image.c | 452 void *load_buf, void *image_buf, ulong image_len, in image_decomp() argument 471 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ); in image_decomp() 477 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in image_decomp() 488 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size, in image_decomp() 497 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len, in image_decomp() 506 ret = lzop_decompress(image_buf, image_len, load_buf, &size); in image_decomp() 514 ret = ulz4fn(image_buf, image_len, load_buf, &size); in image_decomp() 523 abuf_init_set(&out, load_buf, unc_len); in image_decomp()
|
| A D | bootm.c | 614 void *load_buf, *image_buf; in bootm_load_os() local 640 load_buf = map_sysmem(load, 0); in bootm_load_os() 643 load_buf, image_buf, image_len, in bootm_load_os() 697 memmove((void *)relocated_addr, load_buf, image_size); in bootm_load_os() 1210 void *load_buf; in bootm_host_load_image() local 1232 load_buf = malloc(buf_size); in bootm_host_load_image() 1233 ret = image_decomp(image_comp, 0, data, image_type, load_buf, in bootm_host_load_image() 1235 free(load_buf); in bootm_host_load_image()
|
Completed in 14 milliseconds