Lines Matching refs:dst
204 void* dst, size_t dstCapacity)
212 assert(dst != NULL); assert(dstCapacity > 0);
230 /* Any data within dst has been flushed at this stage */
233 ret = LZ4F_decompress(dctx, dst, &dstSize, srcPtr, &srcSize, /* LZ4F_decompressOptions_t */ NULL);
239 if (dstSize != 0) safe_fwrite(dst, 1, dstSize, f_out);
300 void* const dst = malloc(dstCapacity);
301 if (!dst) { perror("decompress_file(dst)"); return 1; }
307 dst, dstCapacity);
309 free(dst);