Lines Matching defs:out
103 error("ZSTD decompressor ran out of memory");
138 goto out;
141 * Find out how large the frame actually is, there may be junk at
147 goto out;
153 goto out;
159 out:
173 zstd_out_buffer out;
209 goto out;
220 goto out;
232 goto out;
238 out.dst = out_buf;
239 out.pos = 0;
240 out.size = out_len;
252 goto out;
256 goto out;
261 goto out;
274 goto out;
297 goto out;
303 ret = zstd_decompress_stream(dstream, &out, &in);
306 goto out;
308 if (flush != NULL && out.pos > 0) {
309 if (out.pos != flush(out.dst, out.pos)) {
312 goto out;
314 out.pos = 0;
322 out: