/kernel/linux/linux-5.10/lib/ |
H A D | decompress_inflate.c | 45 unsigned char *out_buf, long out_len, in __gunzip() 54 out_len = 0x8000; /* 32 K */ in __gunzip() 55 out_buf = malloc(out_len); in __gunzip() 57 if (!out_len) in __gunzip() 58 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */ in __gunzip() 131 strm->avail_out = out_len; in __gunzip() 167 strm->avail_out = out_len; in __gunzip() 213 unsigned char *out_buf, long out_len, in __decompress() 217 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress() 42 __gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void(*error)(char *x)) __gunzip() argument 210 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument
|
H A D | decompress_unzstd.c | 124 long out_len, long *in_pos, in decompress_single() 148 ret = ZSTD_decompressDCtx(dctx, out_buf, out_len, in_buf, in_len); in decompress_single() 166 unsigned char *out_buf, long out_len, in __unzstd() 186 if (out_len == 0) in __unzstd() 187 out_len = UINTPTR_MAX - (uintptr_t)out_buf; in __unzstd() 194 return decompress_single(in_buf, in_len, out_buf, out_len, in __unzstd() 233 out_len = ZSTD_IOBUF_SIZE; in __unzstd() 238 out.size = out_len; in __unzstd() 344 unsigned char *out_buf, long out_len, in __decompress() 348 return __unzstd(buf, len, fill, flush, out_buf, out_len, po in __decompress() 123 decompress_single(const u8 *in_buf, long in_len, u8 *out_buf, long out_len, long *in_pos, void (*error)(char *x)) decompress_single() argument 163 __unzstd(unsigned char *in_buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *in_pos, void (*error)(char *x)) __unzstd() argument 341 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument [all...] |
H A D | decompress_unlz4.c | 45 size_t out_len = get_unaligned_le32(input + in_len); in unlz4() local 154 if (out_len >= uncomp_chunksize) { in unlz4() 156 out_len -= dest_len; in unlz4() 158 dest_len = out_len; in unlz4() 210 unsigned char *output, long out_len, in __decompress() 207 __decompress(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long out_len, long *posp, void (*error)(char *x) ) __decompress() argument
|
/kernel/linux/linux-6.6/lib/ |
H A D | decompress_inflate.c | 45 unsigned char *out_buf, long out_len, in __gunzip() 54 out_len = 0x8000; /* 32 K */ in __gunzip() 55 out_buf = malloc(out_len); in __gunzip() 57 if (!out_len) in __gunzip() 58 out_len = ((size_t)~0) - (size_t)out_buf; /* no limit */ in __gunzip() 131 strm->avail_out = out_len; in __gunzip() 167 strm->avail_out = out_len; in __gunzip() 213 unsigned char *out_buf, long out_len, in __decompress() 217 return __gunzip(buf, len, fill, flush, out_buf, out_len, pos, error); in __decompress() 42 __gunzip(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void(*error)(char *x)) __gunzip() argument 210 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument
|
H A D | decompress_unzstd.c | 126 long out_len, long *in_pos, in decompress_single() 150 ret = zstd_decompress_dctx(dctx, out_buf, out_len, in_buf, in_len); in decompress_single() 168 unsigned char *out_buf, long out_len, in __unzstd() 188 if (out_len == 0) in __unzstd() 189 out_len = UINTPTR_MAX - (uintptr_t)out_buf; in __unzstd() 196 return decompress_single(in_buf, in_len, out_buf, out_len, in __unzstd() 235 out_len = ZSTD_IOBUF_SIZE; in __unzstd() 240 out.size = out_len; in __unzstd() 346 unsigned char *out_buf, long out_len, in __decompress() 350 return __unzstd(buf, len, fill, flush, out_buf, out_len, po in __decompress() 125 decompress_single(const u8 *in_buf, long in_len, u8 *out_buf, long out_len, long *in_pos, void (*error)(char *x)) decompress_single() argument 165 __unzstd(unsigned char *in_buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *in_pos, void (*error)(char *x)) __unzstd() argument 343 __decompress(unsigned char *buf, long len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *out_buf, long out_len, long *pos, void (*error)(char *x)) __decompress() argument [all...] |
H A D | decompress_unlz4.c | 45 size_t out_len = get_unaligned_le32(input + in_len); in unlz4() local 154 if (out_len >= uncomp_chunksize) { in unlz4() 156 out_len -= dest_len; in unlz4() 158 dest_len = out_len; in unlz4() 210 unsigned char *output, long out_len, in __decompress() 207 __decompress(unsigned char *buf, long in_len, long (*fill)(void*, unsigned long), long (*flush)(void*, unsigned long), unsigned char *output, long out_len, long *posp, void (*error)(char *x) ) __decompress() argument
|
/kernel/linux/linux-5.10/fs/ubifs/ |
H A D | crypto.c | 28 unsigned int in_len, unsigned int *out_len, int block) in ubifs_encrypt() 35 ubifs_assert(c, pad_len <= *out_len); in ubifs_encrypt() 48 *out_len = pad_len; in ubifs_encrypt() 54 unsigned int *out_len, int block) in ubifs_decrypt() 59 unsigned int dlen = *out_len; in ubifs_decrypt() 74 *out_len = clen; in ubifs_decrypt() 27 ubifs_encrypt(const struct inode *inode, struct ubifs_data_node *dn, unsigned int in_len, unsigned int *out_len, int block) ubifs_encrypt() argument 53 ubifs_decrypt(const struct inode *inode, struct ubifs_data_node *dn, unsigned int *out_len, int block) ubifs_decrypt() argument
|
H A D | compress.c | 88 * @out_len: output buffer length is returned here 94 * @out_len. If the input buffer does not compress, it is just copied to the 102 int in_len, void *out_buf, int *out_len, int *compr_type) in ubifs_compress() 117 (unsigned int *)out_len); in ubifs_compress() 130 if (in_len - *out_len < UBIFS_MIN_COMPRESS_DIFF) in ubifs_compress() 137 *out_len = in_len; in ubifs_compress() 146 * @out_len: output length is returned here 150 * The length of the uncompressed data is returned in @out_len. This functions 154 int in_len, void *out_buf, int *out_len, int compr_type) in ubifs_decompress() 173 *out_len in ubifs_decompress() 101 ubifs_compress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int *compr_type) ubifs_compress() argument 153 ubifs_decompress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int compr_type) ubifs_decompress() argument [all...] |
/kernel/linux/linux-6.6/fs/ubifs/ |
H A D | crypto.c | 32 * @out_len: allocated memory size for the data area of @dn 36 * The encrypted data length will store in @out_len. 39 unsigned int in_len, unsigned int *out_len, int block) in ubifs_encrypt() 46 ubifs_assert(c, pad_len <= *out_len); in ubifs_encrypt() 59 *out_len = pad_len; in ubifs_encrypt() 65 unsigned int *out_len, int block) in ubifs_decrypt() 70 unsigned int dlen = *out_len; in ubifs_decrypt() 85 *out_len = clen; in ubifs_decrypt() 38 ubifs_encrypt(const struct inode *inode, struct ubifs_data_node *dn, unsigned int in_len, unsigned int *out_len, int block) ubifs_encrypt() argument 64 ubifs_decrypt(const struct inode *inode, struct ubifs_data_node *dn, unsigned int *out_len, int block) ubifs_decrypt() argument
|
H A D | compress.c | 88 * @out_len: output buffer length is returned here 94 * @out_len. If the input buffer does not compress, it is just copied to the 102 int in_len, void *out_buf, int *out_len, int *compr_type) in ubifs_compress() 117 (unsigned int *)out_len); in ubifs_compress() 130 if (in_len - *out_len < UBIFS_MIN_COMPRESS_DIFF) in ubifs_compress() 137 *out_len = in_len; in ubifs_compress() 146 * @out_len: output length is returned here 150 * The length of the uncompressed data is returned in @out_len. This functions 154 int in_len, void *out_buf, int *out_len, int compr_type) in ubifs_decompress() 173 *out_len in ubifs_decompress() 101 ubifs_compress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int *compr_type) ubifs_compress() argument 153 ubifs_decompress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int compr_type) ubifs_decompress() argument [all...] |
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | lzo.c | 130 size_t out_len; in lzo_compress_pages() local 165 &out_len, workspace->mem); in lzo_compress_pages() 174 write_compress_length(cpage_out + out_offset, out_len); in lzo_compress_pages() 180 tot_out += out_len; in lzo_compress_pages() 184 while (out_len) { in lzo_compress_pages() 185 bytes = min_t(unsigned long, pg_bytes_left, out_len); in lzo_compress_pages() 189 out_len -= bytes; in lzo_compress_pages() 200 if ((out_len == 0 && pg_bytes_left < LZO_LEN) || in lzo_compress_pages() 209 if (out_len == 0 && tot_in >= len) in lzo_compress_pages() 295 size_t out_len; in lzo_decompress_bio() local 429 size_t out_len; lzo_decompress() local [all...] |
/kernel/linux/linux-5.10/crypto/ |
H A D | lz4hc.c | 55 int out_len = LZ4_compress_HC(src, dst, slen, in __lz4hc_compress_crypto() local 58 if (!out_len) in __lz4hc_compress_crypto() 61 *dlen = out_len; in __lz4hc_compress_crypto() 85 int out_len = LZ4_decompress_safe(src, dst, slen, *dlen); in __lz4hc_decompress_crypto() local 87 if (out_len < 0) in __lz4hc_decompress_crypto() 90 *dlen = out_len; in __lz4hc_decompress_crypto()
|
H A D | lz4.c | 56 int out_len = LZ4_compress_default(src, dst, in __lz4_compress_crypto() local 59 if (!out_len) in __lz4_compress_crypto() 62 *dlen = out_len; in __lz4_compress_crypto() 84 int out_len = LZ4_decompress_safe(src, dst, slen, *dlen); in __lz4_decompress_crypto() local 86 if (out_len < 0) in __lz4_decompress_crypto() 89 *dlen = out_len; in __lz4_decompress_crypto()
|
H A D | zstd.c | 153 size_t out_len; in __zstd_compress() local 157 out_len = ZSTD_compressCCtx(zctx->cctx, dst, *dlen, src, slen, params); in __zstd_compress() 158 if (ZSTD_isError(out_len)) in __zstd_compress() 160 *dlen = out_len; in __zstd_compress() 182 size_t out_len; in __zstd_decompress() local 185 out_len = ZSTD_decompressDCtx(zctx->dctx, dst, *dlen, src, slen); in __zstd_decompress() 186 if (ZSTD_isError(out_len)) in __zstd_decompress() 188 *dlen = out_len; in __zstd_decompress()
|
/kernel/linux/linux-6.6/crypto/ |
H A D | lz4hc.c | 55 int out_len = LZ4_compress_HC(src, dst, slen, in __lz4hc_compress_crypto() local 58 if (!out_len) in __lz4hc_compress_crypto() 61 *dlen = out_len; in __lz4hc_compress_crypto() 85 int out_len = LZ4_decompress_safe(src, dst, slen, *dlen); in __lz4hc_decompress_crypto() local 87 if (out_len < 0) in __lz4hc_decompress_crypto() 90 *dlen = out_len; in __lz4hc_decompress_crypto()
|
H A D | lz4.c | 56 int out_len = LZ4_compress_default(src, dst, in __lz4_compress_crypto() local 59 if (!out_len) in __lz4_compress_crypto() 62 *dlen = out_len; in __lz4_compress_crypto() 84 int out_len = LZ4_decompress_safe(src, dst, slen, *dlen); in __lz4_decompress_crypto() local 86 if (out_len < 0) in __lz4_decompress_crypto() 89 *dlen = out_len; in __lz4_decompress_crypto()
|
H A D | zstd.c | 153 size_t out_len; in __zstd_compress() local 157 out_len = zstd_compress_cctx(zctx->cctx, dst, *dlen, src, slen, ¶ms); in __zstd_compress() 158 if (zstd_is_error(out_len)) in __zstd_compress() 160 *dlen = out_len; in __zstd_compress() 182 size_t out_len; in __zstd_decompress() local 185 out_len = zstd_decompress_dctx(zctx->dctx, dst, *dlen, src, slen); in __zstd_decompress() 186 if (zstd_is_error(out_len)) in __zstd_decompress() 188 *dlen = out_len; in __zstd_decompress()
|
/kernel/linux/linux-5.10/drivers/infiniband/core/ |
H A D | ucma.c | 370 int in_len, int out_len) in ucma_get_event() 379 if (out_len < sizeof(uevent->resp) - sizeof(uevent->resp.reserved) - in ucma_get_event() 404 min_t(size_t, out_len, sizeof(uevent->resp)))) { in ucma_get_event() 440 int in_len, int out_len) in ucma_create_id() 449 if (out_len < sizeof(resp)) in ucma_create_id() 592 int in_len, int out_len) in ucma_destroy_id() 599 if (out_len < sizeof(resp)) in ucma_destroy_id() 626 int in_len, int out_len) in ucma_bind_ip() 651 int in_len, int out_len) in ucma_bind() 677 int in_len, int out_len) in ucma_resolve_ip() 369 ucma_get_event(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_get_event() argument 439 ucma_create_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_create_id() argument 591 ucma_destroy_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_destroy_id() argument 625 ucma_bind_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind_ip() argument 650 ucma_bind(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind() argument 675 ucma_resolve_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_ip() argument 702 ucma_resolve_addr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_addr() argument 730 ucma_resolve_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_route() argument 816 ucma_query_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query_route() argument 883 ucma_query_addr(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_addr() argument 911 ucma_query_path(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_path() argument 950 ucma_query_gid(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_gid() argument 996 ucma_query(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query() argument 1050 ucma_connect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_connect() argument 1086 ucma_listen(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_listen() argument 1111 ucma_accept(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_accept() argument 1158 ucma_reject(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_reject() argument 1191 ucma_disconnect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_disconnect() argument 1212 ucma_init_qp_attr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_init_qp_attr() argument 1379 ucma_set_option(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_set_option() argument 1413 ucma_notify(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_notify() argument 1436 ucma_process_join(struct ucma_file *file, struct rdma_ucm_join_mcast *cmd, int out_len) ucma_process_join() argument 1521 ucma_join_ip_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_ip_multicast() argument 1544 ucma_join_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_multicast() argument 1559 ucma_leave_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_leave_multicast() argument 1610 ucma_migrate_id(struct ucma_file *new_file, const char __user *inbuf, int in_len, int out_len) ucma_migrate_id() argument [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/core/ |
H A D | ucma.c | 370 int in_len, int out_len) in ucma_get_event() 379 if (out_len < sizeof(uevent->resp) - sizeof(uevent->resp.reserved) - in ucma_get_event() 404 min_t(size_t, out_len, sizeof(uevent->resp)))) { in ucma_get_event() 440 int in_len, int out_len) in ucma_create_id() 449 if (out_len < sizeof(resp)) in ucma_create_id() 592 int in_len, int out_len) in ucma_destroy_id() 599 if (out_len < sizeof(resp)) in ucma_destroy_id() 626 int in_len, int out_len) in ucma_bind_ip() 651 int in_len, int out_len) in ucma_bind() 677 int in_len, int out_len) in ucma_resolve_ip() 369 ucma_get_event(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_get_event() argument 439 ucma_create_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_create_id() argument 591 ucma_destroy_id(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_destroy_id() argument 625 ucma_bind_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind_ip() argument 650 ucma_bind(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_bind() argument 675 ucma_resolve_ip(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_ip() argument 702 ucma_resolve_addr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_addr() argument 730 ucma_resolve_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_resolve_route() argument 816 ucma_query_route(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query_route() argument 883 ucma_query_addr(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_addr() argument 911 ucma_query_path(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_path() argument 950 ucma_query_gid(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_gid() argument 996 ucma_query(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_query() argument 1050 ucma_connect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_connect() argument 1086 ucma_listen(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_listen() argument 1111 ucma_accept(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_accept() argument 1158 ucma_reject(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_reject() argument 1191 ucma_disconnect(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_disconnect() argument 1212 ucma_init_qp_attr(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_init_qp_attr() argument 1379 ucma_set_option(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_set_option() argument 1413 ucma_notify(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_notify() argument 1436 ucma_process_join(struct ucma_file *file, struct rdma_ucm_join_mcast *cmd, int out_len) ucma_process_join() argument 1521 ucma_join_ip_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_ip_multicast() argument 1544 ucma_join_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_join_multicast() argument 1559 ucma_leave_multicast(struct ucma_file *file, const char __user *inbuf, int in_len, int out_len) ucma_leave_multicast() argument 1610 ucma_migrate_id(struct ucma_file *new_file, const char __user *inbuf, int in_len, int out_len) ucma_migrate_id() argument [all...] |
/kernel/linux/linux-5.10/lib/lzo/ |
H A D | lzo1x_compress.c | 23 unsigned char *out, size_t *out_len, in lzo1x_1_do_compress() 300 *out_len = op - out; in lzo1x_1_do_compress() 305 unsigned char *out, size_t *out_len, in lzogeneric1x_1_compress() 335 t = lzo1x_1_do_compress(ip, ll, op, out_len, t, wrkmem, in lzogeneric1x_1_compress() 338 op += *out_len; in lzogeneric1x_1_compress() 377 *out_len = op - out; in lzogeneric1x_1_compress() 382 unsigned char *out, size_t *out_len, in lzo1x_1_compress() 385 return lzogeneric1x_1_compress(in, in_len, out, out_len, wrkmem, 0); in lzo1x_1_compress() 389 unsigned char *out, size_t *out_len, in lzorle1x_1_compress() 392 return lzogeneric1x_1_compress(in, in_len, out, out_len, in lzorle1x_1_compress() 22 lzo1x_1_do_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, size_t ti, void *wrkmem, signed char *state_offset, const unsigned char bitstream_version) lzo1x_1_do_compress() argument 304 lzogeneric1x_1_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, void *wrkmem, const unsigned char bitstream_version) lzogeneric1x_1_compress() argument 381 lzo1x_1_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, void *wrkmem) lzo1x_1_compress() argument 388 lzorle1x_1_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, void *wrkmem) lzorle1x_1_compress() argument [all...] |
H A D | lzo1x_decompress_safe.c | 40 unsigned char *out, size_t *out_len) in lzo1x_decompress_safe() 48 unsigned char * const op_end = out + *out_len; in lzo1x_decompress_safe() 273 *out_len = op - out; in lzo1x_decompress_safe() 279 *out_len = op - out; in lzo1x_decompress_safe() 283 *out_len = op - out; in lzo1x_decompress_safe() 287 *out_len = op - out; in lzo1x_decompress_safe() 39 lzo1x_decompress_safe(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len) lzo1x_decompress_safe() argument
|
/kernel/linux/linux-6.6/lib/lzo/ |
H A D | lzo1x_compress.c | 23 unsigned char *out, size_t *out_len, in lzo1x_1_do_compress() 298 *out_len = op - out; in lzo1x_1_do_compress() 303 unsigned char *out, size_t *out_len, in lzogeneric1x_1_compress() 333 t = lzo1x_1_do_compress(ip, ll, op, out_len, t, wrkmem, in lzogeneric1x_1_compress() 336 op += *out_len; in lzogeneric1x_1_compress() 375 *out_len = op - out; in lzogeneric1x_1_compress() 380 unsigned char *out, size_t *out_len, in lzo1x_1_compress() 383 return lzogeneric1x_1_compress(in, in_len, out, out_len, wrkmem, 0); in lzo1x_1_compress() 387 unsigned char *out, size_t *out_len, in lzorle1x_1_compress() 390 return lzogeneric1x_1_compress(in, in_len, out, out_len, in lzorle1x_1_compress() 22 lzo1x_1_do_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, size_t ti, void *wrkmem, signed char *state_offset, const unsigned char bitstream_version) lzo1x_1_do_compress() argument 302 lzogeneric1x_1_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, void *wrkmem, const unsigned char bitstream_version) lzogeneric1x_1_compress() argument 379 lzo1x_1_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, void *wrkmem) lzo1x_1_compress() argument 386 lzorle1x_1_compress(const unsigned char *in, size_t in_len, unsigned char *out, size_t *out_len, void *wrkmem) lzorle1x_1_compress() argument [all...] |
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | lzo.c | 243 size_t out_len; in lzo_compress_pages() local 257 workspace->cbuf, &out_len, in lzo_compress_pages() 266 ret = copy_compressed_data_to_page(workspace->cbuf, out_len, in lzo_compress_pages() 370 size_t out_len = lzo1x_worst_compress(sectorsize); in lzo_decompress_bio() local 400 workspace->buf, &out_len); in lzo_decompress_bio() 407 ret = btrfs_decompress_buf2page(workspace->buf, out_len, cb, cur_out); in lzo_decompress_bio() 408 cur_out += out_len; in lzo_decompress_bio() 433 size_t out_len; in lzo_decompress() local 454 out_len = PAGE_SIZE; in lzo_decompress() 455 ret = lzo1x_decompress_safe(data_in, in_len, workspace->buf, &out_len); in lzo_decompress() [all...] |
/kernel/linux/linux-5.10/security/keys/ |
H A D | keyctl_pkey.c | 139 uparams.out_len > info.max_enc_size) in keyctl_pkey_params_get_2() 144 uparams.out_len > info.max_dec_size) in keyctl_pkey_params_get_2() 149 uparams.out_len > info.max_sig_size) in keyctl_pkey_params_get_2() 162 params->out_len = uparams.out_len; /* Note: same as in2_len */ in keyctl_pkey_params_get_2() 253 out = kmalloc(params.out_len, GFP_KERNEL); in keyctl_pkey_e_d_s()
|
/kernel/linux/linux-6.6/security/keys/ |
H A D | keyctl_pkey.c | 139 uparams.out_len > info.max_enc_size) in keyctl_pkey_params_get_2() 144 uparams.out_len > info.max_dec_size) in keyctl_pkey_params_get_2() 149 uparams.out_len > info.max_sig_size) in keyctl_pkey_params_get_2() 162 params->out_len = uparams.out_len; /* Note: same as in2_len */ in keyctl_pkey_params_get_2() 251 out = kmalloc(params.out_len, GFP_KERNEL); in keyctl_pkey_e_d_s()
|