Searched refs:in_buf (Results 1 – 4 of 4) sorted by relevance
/u-boot/fs/btrfs/ |
A D | compression.c | 140 ZSTD_inBuffer in_buf; in decompress_zstd() local 160 in_buf.src = cbuf; in decompress_zstd() 161 in_buf.pos = 0; in decompress_zstd() 162 in_buf.size = clen; in decompress_zstd() 171 ret = ZSTD_decompressStream(dstream, &out_buf, &in_buf); in decompress_zstd() 178 if (in_buf.pos >= clen || !ret) in decompress_zstd()
|
/u-boot/common/ |
A D | image.c | 530 ZSTD_inBuffer in_buf; in image_decomp() local 549 in_buf.src = image_buf; in image_decomp() 550 in_buf.pos = 0; in image_decomp() 551 in_buf.size = image_len; in image_decomp() 560 ret = ZSTD_decompressStream(dstream, &out_buf, &in_buf); in image_decomp() 567 if (in_buf.pos >= image_len || !ret) in image_decomp()
|
/u-boot/fs/ubifs/ |
A D | ubifs.c | 156 int ubifs_decompress(const struct ubifs_info *c, const void *in_buf, in ubifs_decompress() argument 175 memcpy(out_buf, in_buf, in_len); in ubifs_decompress() 182 err = crypto_comp_decompress(c, compr->cc, in_buf, in_len, out_buf, in ubifs_decompress()
|
A D | ubifs.h | 2397 void ubifs_compress(const struct ubifs_info *c, const void *in_buf, int in_len,
|
Completed in 15 milliseconds