Lines Matching defs:source

5  * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
27 * - LZ4 source repository : https://github.com/lz4/lz4
178 const char * const source,
188 const BYTE *ip = (const BYTE *) source;
194 const size_t dictDelta = dictEnd - (const BYTE *)source;
195 const BYTE *anchor = (const BYTE *) source;
215 base = (const BYTE *)source;
216 lowLimit = (const BYTE *)source;
219 base = (const BYTE *)source - dictPtr->currentOffset;
220 lowLimit = (const BYTE *)source - dictPtr->dictSize;
223 base = (const BYTE *)source - dictPtr->currentOffset;
224 lowLimit = (const BYTE *)source;
270 if (match < (const BYTE *)source) {
275 lowLimit = (const BYTE *)source;
355 (const BYTE *)source,
405 if (match < (const BYTE *)source) {
410 lowLimit = (const BYTE *)source;
460 const char *source,
480 return LZ4_compress_generic(ctx, source,
485 return LZ4_compress_generic(ctx, source,
491 return LZ4_compress_generic(ctx, source,
496 return LZ4_compress_generic(ctx, source,
503 int LZ4_compress_fast(const char *source, char *dest, int inputSize,
506 return LZ4_compress_fast_extState(wrkmem, source, dest, inputSize,
511 int LZ4_compress_default(const char *source, char *dest, int inputSize,
514 return LZ4_compress_fast(source, dest, inputSize,
857 int LZ4_compress_fast_continue(LZ4_stream_t *LZ4_stream, const char *source,
864 const BYTE *smallest = (const BYTE *) source;
881 const BYTE *sourceEnd = (const BYTE *) source + inputSize;
894 /* prefix mode : source data follows dictionary */
895 if (dictEnd == (const BYTE *)source) {
901 streamPtr, source, dest, inputSize,
906 streamPtr, source, dest, inputSize,
922 streamPtr, source, dest, inputSize,
927 streamPtr, source, dest, inputSize,
931 streamPtr->dictionary = (const BYTE *)source;