Lines Matching defs:LZ4_MEMORY_USAGE
154 * LZ4_MEMORY_USAGE :
160 #ifndef LZ4_MEMORY_USAGE
161 # define LZ4_MEMORY_USAGE LZ4_MEMORY_USAGE_DEFAULT
164 #if (LZ4_MEMORY_USAGE < LZ4_MEMORY_USAGE_MIN)
165 # error "LZ4_MEMORY_USAGE is too small !"
168 #if (LZ4_MEMORY_USAGE > LZ4_MEMORY_USAGE_MAX)
169 # error "LZ4_MEMORY_USAGE is too large !"
654 #define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2)
655 #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
688 #define LZ4_STREAM_MINSIZE ((1UL << LZ4_MEMORY_USAGE) + 32) /* static size, for inter-version compatibility */