HomeSort by relevance Sort by last modified time
    Searched refs:LZ4_STREAMSIZE_U64 (Results 1 - 2 of 2) sorted by null

  /external/lz4/lib/
lz4.h 175 #define LZ4_STREAMSIZE_U64 ((1 << (LZ4_MEMORY_USAGE-3)) + 4)
176 #define LZ4_STREAMSIZE (LZ4_STREAMSIZE_U64 * sizeof(long long))
184 typedef struct { long long table[LZ4_STREAMSIZE_U64]; } LZ4_stream_t;
lz4.c 713 void* ctx = ALLOCATOR(LZ4_STREAMSIZE_U64, 8); /* Aligned on 8-bytes boundaries */
715 U64 ctx[LZ4_STREAMSIZE_U64] = {0}; /* Ensure data is aligned on 8-bytes boundaries */
733 void* ctx = ALLOCATOR(LZ4_STREAMSIZE_U64, 8); /* Aligned on 8-bytes boundaries */
735 U64 ctx[LZ4_STREAMSIZE_U64] = {0}; /* Ensure data is aligned on 8-bytes boundaries */
767 LZ4_stream_t* lz4s = (LZ4_stream_t*)ALLOCATOR(8, LZ4_STREAMSIZE_U64);
    [all...]

Completed in 40 milliseconds