Lines Matching defs:out
60 lzo_bytep out, lzo_uintp out_len,
72 lzo_bytep out, lzo_uintp out_len,
158 error("out of memory");
178 lzo_bytep out;
236 out = xzalloc(out_bufsize);
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)
304 r = lzo1x_optimize(out, out_len, in, &orig_len, NULL);
314 compressed_checksum = lzo_adler32(compressed_checksum, out, out_len);
320 memset(out + out_len, 0, 2048);
337 csum += get_32((uint32_t *) (out + ptr));
355 fwrite(out, 1, outfile_len, f) != outfile_len || fclose(f))
364 r = lzo1x_decompress_safe(out, out_len, test, &orig_len, NULL);
384 free(out);