Home | History | Annotate | Download | only in lzo

Lines Matching defs:in

14    This file is based in part on:
40 The LZO library is distributed in the hope that it will be useful,
59 lzo1x_999_compress_internal(const lzo_bytep in, lzo_uint in_len,
71 lzo1y_999_compress_internal(const lzo_bytep in, lzo_uint in_len,
171 const lzo_uint big = 65536L; /* can result in very slow compression */
174 lzo_bytep in;
246 in = infile + offset;
254 uncompressed_checksum = lzo_adler32(uncompressed_checksum, in, in_len);
257 * Step 6a: compress from `in' to `out' with LZO1X-999
261 r = lzo1x_999_compress_internal(in, in_len, out, &out_len, wrkmem,
287 r = lzo1x_999_compress_internal(in, in_len, out, &out_len, wrkmem,
294 * Step 9: optimize compressed data (compressed data is in `out' buffer)
297 /* Optimization does not require any data in the buffer that will
300 memset(in, 0, in_len);
304 r = lzo1x_optimize(out, out_len, in, &orig_len, NULL);
371 if (memcmp(test, in, in_len)) {
376 /* Now you could also verify decompression under similar conditions as in