Lines Matching refs:dict
1907 LZ4_stream_t_internal *dict = &LZ4_dict->internal_donotuse; in LZ4_loadDict() local
1927 dict->currentOffset += 64 KB; in LZ4_loadDict()
1936 base = dictEnd - dict->currentOffset; in LZ4_loadDict()
1937 dict->dictionary = p; in LZ4_loadDict()
1938 dict->dictSize = (U32)(dictEnd - p); in LZ4_loadDict()
1939 dict->tableType = (U32)tableType; in LZ4_loadDict()
1943 LZ4_putPosition(p, dict->hashTable, tableType, base); in LZ4_loadDict()
1947 return (int)dict->dictSize; in LZ4_loadDict()
2128 LZ4_stream_t_internal *const dict = &LZ4_dict->internal_donotuse; in LZ4_saveDict() local
2129 const BYTE *const previousDictEnd = dict->dictionary + dict->dictSize; in LZ4_saveDict()
2135 if ((U32)dictSize > dict->dictSize) in LZ4_saveDict()
2137 dictSize = (int)dict->dictSize; in LZ4_saveDict()
2145 dict->dictionary = (const BYTE *)safeBuffer; in LZ4_saveDict()
2146 dict->dictSize = (U32)dictSize; in LZ4_saveDict()
2225 dict_directive dict, /* noDict, withPrefix64k, usingExtDict */ in LZ4_decompress_generic() argument
2409 if ((dict == withPrefix64k) || (match >= lowPrefix)) in LZ4_decompress_generic()
2431 if ((dict == usingExtDict) && (match < lowPrefix)) in LZ4_decompress_generic()
2530 … if ((length != ML_MASK) && (offset >= 8) && (dict == withPrefix64k || match >= lowPrefix)) in LZ4_decompress_generic()
2672 if ((dict == usingExtDict) && (match < lowPrefix)) in LZ4_decompress_generic()