Home
last modified time | relevance | path

Searched refs:out_len (Results 1 – 9 of 9) sorted by relevance

/xen/tools/libxc/
A Dxc_dom_decompress_lz4.c44 size_t out_len, dest_len, chunksize; in xc_try_lz4_decode() local
52 out_len = get_unaligned_le32(inp + size); in xc_try_lz4_decode()
53 if (xc_dom_kernel_check_size(dom, out_len)) { in xc_try_lz4_decode()
58 output = malloc(out_len); in xc_try_lz4_decode()
92 dest_len = out_len - (outp - output); in xc_try_lz4_decode()
106 if ( xc_dom_register_external(dom, output, out_len) ) in xc_try_lz4_decode()
112 *psize = out_len; in xc_try_lz4_decode()
A Dxg_private.c108 unsigned long out_len; in xc_inflate_buffer() local
120 out_len = (unsigned char)in_buf[in_size-4] + in xc_inflate_buffer()
126 out_buf = malloc(out_len + 16); /* Leave a little extra space */ in xc_inflate_buffer()
136 zStream.avail_out = out_len+16; in xc_inflate_buffer()
156 *out_size = out_len; in xc_inflate_buffer()
A Dxc_dom_bzimageloader.c476 lzo_uint src_len, dst_len, out_len; in xc_try_lzo1x_decode() local
524 out_len = dst_len; in xc_try_lzo1x_decode()
527 out_buf + *size, &out_len, NULL); in xc_try_lzo1x_decode()
532 if ( out_len != dst_len ) in xc_try_lzo1x_decode()
536 *size += out_len; in xc_try_lzo1x_decode()
/xen/xen/common/
A Dunlz4.c40 size_t out_len = get_unaligned_le32(input + in_len); in unlz4() local
120 if (out_len >= uncomp_chunksize) { in unlz4()
122 out_len -= dest_len; in unlz4()
124 dest_len = out_len; in unlz4()
A Dlzo.c140 unsigned char *out, size_t *out_len) in lzo1x_decompress_safe() argument
148 unsigned char * const op_end = out + *out_len; in lzo1x_decompress_safe()
346 *out_len = op - out; in lzo1x_decompress_safe()
352 *out_len = op - out; in lzo1x_decompress_safe()
356 *out_len = op - out; in lzo1x_decompress_safe()
360 *out_len = op - out; in lzo1x_decompress_safe()
/xen/xen/tools/kconfig/
A Dpreprocess.c500 size_t in_len, out_len; in __expand_string() local
504 out_len = 1; in __expand_string()
513 out_len += in_len + strlen(expansion); in __expand_string()
514 out = xrealloc(out, out_len); in __expand_string()
529 out_len += in_len; in __expand_string()
530 out = xrealloc(out, out_len); in __expand_string()
/xen/xen/common/lz4/
A Ddecompress.c327 int out_len = 0; in lz4_decompress_unknownoutputsize() local
329 out_len = lz4_uncompress_unknownoutputsize(src, dest, src_len, in lz4_decompress_unknownoutputsize()
331 if (out_len < 0) in lz4_decompress_unknownoutputsize()
333 *dest_len = out_len; in lz4_decompress_unknownoutputsize()
/xen/stubdom/vtpmmgr/
A Dtpm.c105 UINT32 out_len = _io_bufsize_out; \
116 if (rsp_tag != req_tag + 3 || rsp_len != out_len) { \
206 if (out_pos != out_len) { \
207 vtpmloginfo(VTPM_LOG_TPM, "Response too long (%d != %d)", out_pos, out_len);\
A Dtpm2.c67 UINT32 out_len = sizeof(out_buf);\
97 if ((status = TPM_TransmitData(in_buf, paramSize, out_buf, &out_len)) != TPM_SUCCESS) {\

Completed in 15 milliseconds