Lines Matching defs:IN_CHUNK_SIZE
6 * Input is read in chunks of IN_CHUNK_SIZE */
18 #define IN_CHUNK_SIZE (16*1024)
87 long long inSize = IN_CHUNK_SIZE;
92 if (bytesToOffset < IN_CHUNK_SIZE && bytesToOffset > 0) {
160 void* const src = malloc(IN_CHUNK_SIZE);
161 size_t const outbufCapacity = LZ4F_compressBound(IN_CHUNK_SIZE, &kPrefs); /* large enough for any input <= IN_CHUNK_SIZE */
168 src, IN_CHUNK_SIZE,
320 void* const src = malloc(IN_CHUNK_SIZE);
330 decompress_file_allocDst(f_in, f_out, dctx, src, IN_CHUNK_SIZE);