Home
last modified time | relevance | path

Searched refs:LZ4_MEMORY_USAGE (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/src/libs/lz4/
Dlz4.h172 #ifndef LZ4_MEMORY_USAGE
173 # define LZ4_MEMORY_USAGE LZ4_MEMORY_USAGE_DEFAULT macro
176 #if (LZ4_MEMORY_USAGE < LZ4_MEMORY_USAGE_MIN)
180 #if (LZ4_MEMORY_USAGE > LZ4_MEMORY_USAGE_MAX)
686 #define LZ4_HASHLOG (LZ4_MEMORY_USAGE-2)
687 #define LZ4_HASHTABLESIZE (1 << LZ4_MEMORY_USAGE)
720 #define LZ4_STREAM_MINSIZE ((1UL << LZ4_MEMORY_USAGE) + 32) /* static size, for inter-version com…
Dlz4.c840 LZ4_STATIC_ASSERT(LZ4_MEMORY_USAGE > 2); in LZ4_getIndexOnHash()
843 assert(h < (1U << (LZ4_MEMORY_USAGE-2))); in LZ4_getIndexOnHash()
848 assert(h < (1U << (LZ4_MEMORY_USAGE-1))); in LZ4_getIndexOnHash()