34 #ifndef TRACY_LZ4_HC_H_19834876238432
35 #define TRACY_LZ4_HC_H_19834876238432
45 #define LZ4HC_CLEVEL_MIN 3
46 #define LZ4HC_CLEVEL_DEFAULT 9
47 #define LZ4HC_CLEVEL_OPT_MIN 10
48 #define LZ4HC_CLEVEL_MAX 12
90 const char*
src,
char*
dst,
91 int* srcSizePtr,
int targetDstSize,
157 const char*
src,
char*
dst,
171 const char*
src,
char*
dst,
172 int* srcSizePtr,
int targetDstSize);
190 #define LZ4HC_DICTIONARY_LOGSIZE 16
191 #define LZ4HC_MAXD (1<<LZ4HC_DICTIONARY_LOGSIZE)
192 #define LZ4HC_MAXD_MASK (LZ4HC_MAXD - 1)
194 #define LZ4HC_HASH_LOG 15
195 #define LZ4HC_HASHTABLESIZE (1 << LZ4HC_HASH_LOG)
196 #define LZ4HC_HASH_MASK (LZ4HC_HASHTABLESIZE - 1)
199 #if defined(__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) )
246 #define LZ4_STREAMHCSIZE (4*LZ4HC_HASHTABLESIZE + 2*LZ4HC_MAXD + 56 + ((sizeof(void*)==16) ? 56 : 0) )
247 #define LZ4_STREAMHCSIZE_SIZET (LZ4_STREAMHCSIZE / sizeof(size_t))
331 #ifdef LZ4_HC_STATIC_LINKING_ONLY
332 #ifndef LZ4_HC_SLO_098092834
333 #define LZ4_HC_SLO_098092834
392 const char*
src,
char*
dst,
393 int srcSize,
int dstCapacity,
394 int compressionLevel);