Home
last modified time | relevance | path

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

/openbmc/linux/lib/lz4/
H A Dlz4_compress.c775 int LZ4_loadDict(LZ4_stream_t *LZ4_dict, in LZ4_loadDict() argument
786 LZ4_resetStream(LZ4_dict); in LZ4_loadDict()
815 if ((LZ4_dict->currentOffset > 0x80000000) || in LZ4_renormDictT()
820 const BYTE *dictEnd = LZ4_dict->dictionary + LZ4_dict->dictSize; in LZ4_renormDictT()
824 if (LZ4_dict->hashTable[i] < delta) in LZ4_renormDictT()
825 LZ4_dict->hashTable[i] = 0; in LZ4_renormDictT()
827 LZ4_dict->hashTable[i] -= delta; in LZ4_renormDictT()
829 LZ4_dict->currentOffset = 64 * KB; in LZ4_renormDictT()
830 if (LZ4_dict->dictSize > 64 * KB) in LZ4_renormDictT()
831 LZ4_dict->dictSize = 64 * KB; in LZ4_renormDictT()
[all …]