Searched refs:in_len (Results 1 - 9 of 9) sorted by relevance

/u-boot/fs/btrfs/
H A Dcompression.c22 u32 tot_len, tot_in, in_len, res; local
46 in_len = le32_to_cpu(get_unaligned((u32 *)cbuf));
50 if (in_len > clen || tot_len < LZO_LEN + in_len)
53 tot_len -= (LZO_LEN + in_len);
54 tot_in += (LZO_LEN + in_len);
57 ret = lzo1x_decompress_safe(cbuf, in_len, dbuf, &out_len);
61 cbuf += in_len;
62 clen -= in_len;
/u-boot/scripts/kconfig/
H A Dpreprocess.c497 size_t in_len, out_len; local
507 in_len = p - in;
510 out_len += in_len + strlen(expansion);
512 strncat(out, in, in_len);
525 in_len = p - in;
526 out_len += in_len;
528 strncat(out, in, in_len);
/u-boot/fs/jffs2/
H A Dcompr_lzo.c150 lzo1x_decompress (const lzo_byte * in, lzo_uint in_len, argument
159 const lzo_byte *const ip_end = in + in_len;
/u-boot/lib/lzo/
H A Dlzo1x_decompress.c142 int lzo1x_decompress_safe(const unsigned char *in, size_t in_len, argument
145 const unsigned char * const ip_end = in + in_len;
/u-boot/fs/ubifs/
H A Dubifs.c38 static int gzip_decompress(const unsigned char *in, size_t in_len, argument
147 * @in_len: length of the data to decompress
157 int in_len, void *out_buf, int *out_len, int compr_type)
175 memcpy(out_buf, in_buf, in_len);
176 *out_len = in_len;
182 err = crypto_comp_decompress(c, compr->cc, in_buf, in_len, out_buf,
188 " error %d", in_len, compr->name, err);
156 ubifs_decompress(const struct ubifs_info *c, const void *in_buf, int in_len, void *out_buf, int *out_len, int compr_type) argument
H A Dubifs.h1439 int (*decompress)(const unsigned char *in, size_t in_len,
2397 void ubifs_compress(const struct ubifs_info *c, const void *in_buf, int in_len,
/u-boot/lib/crypto/
H A Dpublic_key.c305 sg_init_one(&in_sg, in, params->in_len);
307 akcipher_request_set_crypt(req, &in_sg, &out_sg, params->in_len,
H A Dasymmetric_type.c587 .digest_size = params->in_len,
/u-boot/tools/
H A Dmxsimage.c224 uint8_t *out_data, int in_len)
230 outbuf = malloc(in_len);
233 memset(outbuf, 0, sizeof(in_len));
235 ret = EVP_CipherUpdate(ctx, outbuf, &outlen, in_data, in_len);
223 sb_aes_crypt(struct sb_image_ctx *ictx, uint8_t *in_data, uint8_t *out_data, int in_len) argument

Completed in 85 milliseconds