Searched refs:load_buf (Results 1 - 3 of 3) sorted by relevance

/u-boot/boot/
H A Dimage.c450 void *load_buf, void *image_buf, ulong image_len,
469 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
475 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
486 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
495 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
504 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
512 ret = ulz4fn(image_buf, image_len, load_buf, &size);
521 abuf_init_set(&out, load_buf, unc_len);
449 image_decomp(int comp, ulong load, ulong image_start, int type, void *load_buf, void *image_buf, ulong image_len, uint unc_len, ulong *load_end) argument
H A Dbootm.c630 void *load_buf, *image_buf; local
652 load_buf = map_sysmem(load, 0);
655 load_buf, image_buf, image_len,
709 memmove((void *)relocated_addr, load_buf, image_size);
1224 void *load_buf; local
1246 load_buf = malloc(buf_size);
1247 ret = image_decomp(image_comp, 0, data, image_type, load_buf,
1249 free(load_buf);
/u-boot/include/
H A Dimage.h1014 * @load_buf: Place to decompress to
1021 void *load_buf, void *image_buf, ulong image_len,

Completed in 59 milliseconds