Lines Matching defs:isize
42 static int real_LZ4_compress(const char *source, char *dest, int isize,
45 int isize, int osize);
47 int isize, int osize);
51 int isize, int maxOutputSize);
112 * isize : is the input size. Max supported value is ~1.9GB
139 * isize : is the input size. Max supported value is ~1.9GB
144 * isize : is the input size, therefore the compressed size
166 * isize *Must* be <64KB, otherwise the output will be corrupted.
477 LZ4_compressCtx(void *ctx, const char *source, char *dest, int isize,
486 const BYTE *const iend = ip + isize;
499 if (isize < MINLENGTH)
658 /* Note : this function is valid only if isize < LZ4_64KLIMIT */
667 LZ4_compress64kCtx(void *ctx, const char *source, char *dest, int isize,
676 const BYTE *const iend = ip + isize;
688 if (isize < MINLENGTH)
844 real_LZ4_compress(const char *source, char *dest, int isize, int osize)
860 if (isize < LZ4_64KLIMIT)
861 result = LZ4_compress64kCtx(ctx, source, dest, isize, osize);
863 result = LZ4_compressCtx(ctx, source, dest, isize, osize);