Home
last modified time | relevance | path

Searched refs:unc_len (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/kernel/power/
H A Dswap.c595 size_t *unc_len[LZO_THREADS]; /* uncompressed lengths */ member
620 d->unc[i], *d->unc_len[i]); in crc32_threadfn()
636 size_t unc_len; /* uncompressed length */ member
662 d->ret = lzo1x_1_compress(d->unc, d->unc_len, in lzo_compress_threadfn()
752 crc->unc_len[thr] = &data[thr].unc_len; in save_image_lzo()
798 data[thr].unc_len = off; in save_image_lzo()
825 lzo1x_worst_compress(data[thr].unc_len))) { in save_image_lzo()
1120 size_t unc_len; /* uncompressed length */ member
1145 d->unc_len = LZO_UNC_SIZE; in lzo_decompress_threadfn()
1147 d->unc, &d->unc_len); in lzo_decompress_threadfn()
[all …]
/openbmc/u-boot/common/
H A Dbootm.c334 size_t unc_len, int ret) in handle_decomp_error() argument
338 if (uncomp_size >= unc_len) in handle_decomp_error()
358 uint unc_len, ulong *load_end) in bootm_decomp_image() argument
374 if (image_len <= unc_len) in bootm_decomp_image()
381 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in bootm_decomp_image()
387 uint size = unc_len; in bootm_decomp_image()
403 SizeT lzma_len = unc_len; in bootm_decomp_image()
413 size_t size = unc_len; in bootm_decomp_image()
422 size_t size = unc_len; in bootm_decomp_image()
435 return handle_decomp_error(comp, image_len, unc_len, ret); in bootm_decomp_image()
/openbmc/u-boot/cmd/
H A Dximg.c50 uint unc_len = CONFIG_SYS_XIMG_LEN; in do_imgextract() local
213 if (gunzip((void *) dest, unc_len, in do_imgextract()
233 &unc_len, (char *)data, len, in do_imgextract()
/openbmc/u-boot/test/
H A Dcompression.c463 int unc_len; in run_bootm_test() local
471 unc_len = strlen(plain); in run_bootm_test()
472 compress(uts, (void *)plain, unc_len, compress_buff, compress_size, in run_bootm_test()
476 compress_buff, compress_size, unc_len, in run_bootm_test()
481 compress_buff, compress_size, unc_len - 1, in run_bootm_test()
/openbmc/u-boot/include/
H A Dbootm.h86 uint unc_len, ulong *load_end);