Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.h175 #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4) macro
176 #define LZ4_STREAMSIZE (LZ4_STREAMSIZE_U64 * sizeof(long long))
184 typedef struct { long long table[LZ4_STREAMSIZE_U64]; } LZ4_stream_t;
Dlz4.c713 void* ctx = ALLOCATOR(LZ4_STREAMSIZE_U64, 8); /* Aligned on 8-bytes boundaries */ in LZ4_compress()
715 U64 ctx[LZ4_STREAMSIZE_U64] = {0}; /* Ensure data is aligned on 8-bytes boundaries */ in LZ4_compress()
733 void* ctx = ALLOCATOR(LZ4_STREAMSIZE_U64, 8); /* Aligned on 8-bytes boundaries */ in LZ4_compress_limitedOutput()
735 U64 ctx[LZ4_STREAMSIZE_U64] = {0}; /* Ensure data is aligned on 8-bytes boundaries */ in LZ4_compress_limitedOutput()
767 LZ4_stream_t* lz4s = (LZ4_stream_t*)ALLOCATOR(8, LZ4_STREAMSIZE_U64); in LZ4_createStream()
1316 void* lz4ds = ALLOCATOR(8, LZ4_STREAMSIZE_U64); in LZ4_create()