Searched refs:in_buf (Results 1 – 2 of 2) sorted by relevance
/lib/ |
A D | decompress_unlzo.c | 107 u8 *in_buf, *in_buf_save, *out_buf; in unlzo() local 127 in_buf = input; in unlzo() 133 if (!in_buf) { in unlzo() 138 in_buf_save = in_buf; in unlzo() 150 in_buf += HEADER_SIZE_MAX; in unlzo() 158 in_buf += skip; in unlzo() 164 in_buf = in_buf_save; in unlzo() 182 in_buf += 4; in unlzo() 208 in_buf += 8; in unlzo() 250 in_buf += src_len; in unlzo() [all …]
|
A D | decompress_unzstd.c | 125 static int INIT decompress_single(const u8 *in_buf, long in_len, u8 *out_buf, in decompress_single() argument 144 ret = zstd_find_frame_compressed_size(in_buf, in_len); in decompress_single() 150 ret = zstd_decompress_dctx(dctx, out_buf, out_len, in_buf, in_len); in decompress_single() 165 static int INIT __unzstd(unsigned char *in_buf, long in_len, in __unzstd() argument 196 return decompress_single(in_buf, in_len, out_buf, out_len, in __unzstd() 204 if (in_buf == NULL) { in __unzstd() 211 in_buf = in_allocated; in __unzstd() 216 in_len = fill(in_buf, ZSTD_IOBUF_SIZE); in __unzstd() 223 in.src = in_buf; in __unzstd() 293 in_len = fill ? fill(in_buf, ZSTD_IOBUF_SIZE) : -1; in __unzstd()
|
Completed in 5 milliseconds