Home | History | Annotate | Download | only in gcc

Lines Matching defs:outbuf_length

135   size_t const outbuf_length = ZSTD_compressBound (size);
136 char *outbuf = (char *) xmalloc (outbuf_length);
138 size_t const csize = ZSTD_compress (outbuf, outbuf_length, cursor, size,
250 const size_t outbuf_length = Z_BUFFER_LENGTH;
251 unsigned char *outbuf = (unsigned char *) xmalloc (outbuf_length);
260 out_stream.avail_out = outbuf_length;
280 out_bytes = outbuf_length - out_stream.avail_out;
289 out_stream.avail_out = outbuf_length;
341 const size_t outbuf_length = Z_BUFFER_LENGTH;
342 unsigned char *outbuf = (unsigned char *) xmalloc (outbuf_length);
354 in_stream.avail_out = outbuf_length;
374 out_bytes = outbuf_length - in_stream.avail_out;
383 in_stream.avail_out = outbuf_length;