Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/kernel/power/
H A Dswap.c593 size_t *unc_len[LZO_THREADS]; /* uncompressed lengths */ member
618 d->unc[i], *d->unc_len[i]); in crc32_threadfn()
634 size_t unc_len; /* uncompressed length */ member
660 d->ret = lzo1x_1_compress(d->unc, d->unc_len, in lzo_compress_threadfn()
753 crc->unc_len[thr] = &data[thr].unc_len; in save_image_lzo()
799 data[thr].unc_len = off; in save_image_lzo()
826 lzo1x_worst_compress(data[thr].unc_len))) { in save_image_lzo()
1121 size_t unc_len; /* uncompressed length */ member
1146 d->unc_len = LZO_UNC_SIZE; in lzo_decompress_threadfn()
1148 d->unc, &d->unc_len); in lzo_decompress_threadfn()
[all …]
/OK3568_Linux_fs/u-boot/common/
H A Dbootm.c354 size_t unc_len, int ret) in handle_decomp_error() argument
358 if (uncomp_size >= unc_len) in handle_decomp_error()
360 (ulong)uncomp_size, (ulong)unc_len); in handle_decomp_error()
411 uint unc_len, ulong *load_end) in bootm_decomp_image() argument
428 if (image_len <= unc_len) in bootm_decomp_image()
435 ret = gunzip(load_buf, unc_len, image_buf, &image_len); in bootm_decomp_image()
441 uint size = unc_len; in bootm_decomp_image()
457 SizeT lzma_len = unc_len; in bootm_decomp_image()
467 size_t size = unc_len; in bootm_decomp_image()
476 size_t size = unc_len; in bootm_decomp_image()
[all …]
/OK3568_Linux_fs/u-boot/test/
H A Dcompression.c412 int unc_len; in run_bootm_test() local
420 unc_len = strlen(plain); in run_bootm_test()
421 compress((void *)plain, unc_len, compress_buff, compress_size, in run_bootm_test()
425 compress_buff, compress_size, unc_len, in run_bootm_test()
431 compress_buff, compress_size, unc_len - 1, in run_bootm_test()
/OK3568_Linux_fs/u-boot/cmd/
H A Dximg.c51 uint unc_len = CONFIG_SYS_XIMG_LEN; in do_imgextract() local
214 if (gunzip((void *) dest, unc_len, in do_imgextract()
234 &unc_len, (char *)data, len, in do_imgextract()
/OK3568_Linux_fs/u-boot/include/
H A Dbootm.h76 uint unc_len, ulong *load_end);
/OK3568_Linux_fs/kernel/fs/cifs/
H A Dconnect.c4202 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1); in build_unc_path_to_root() local
4204 if (unc_len > MAX_TREE_SIZE) in build_unc_path_to_root()
4207 full_path = kmalloc(unc_len + pplen + 1, GFP_KERNEL); in build_unc_path_to_root()
4211 memcpy(full_path, vol->UNC, unc_len); in build_unc_path_to_root()
4212 pos = full_path + unc_len; in build_unc_path_to_root()