Lines Matching defs:dict
1543 LZ4_stream_t_internal* dict = &LZ4_dict->internal_donotuse;
1557 /* We always increment the offset by 64 KB, since, if the dict is longer,
1563 dict->currentOffset += 64 KB;
1570 base = dictEnd - dict->currentOffset;
1571 dict->dictionary = p;
1572 dict->dictSize = (U32)(dictEnd - p);
1573 dict->tableType = (U32)tableType;
1576 LZ4_putPosition(p, dict->hashTable, tableType, base);
1580 return (int)dict->dictSize;
1685 * to use noDictIssue even when the dict isn't a full 64 KB.
1741 LZ4_stream_t_internal* const dict = &LZ4_dict->internal_donotuse;
1746 if ((U32)dictSize > dict->dictSize) { dictSize = (int)dict->dictSize; }
1750 const BYTE* const previousDictEnd = dict->dictionary + dict->dictSize;
1751 assert(dict->dictionary);
1755 dict->dictionary = (const BYTE*)safeBuffer;
1756 dict->dictSize = (U32)dictSize;
1801 const BYTE* const dictStart, /* only if dict==usingExtDict */
1944 dict_directive dict, /* noDict, withPrefix64k, usingExtDict */
1946 const BYTE* const dictStart, /* only if dict==usingExtDict */
2052 if ((dict == withPrefix64k) || (match >= lowPrefix)) {
2067 if ((dict==usingExtDict) && (match < lowPrefix)) {
2145 && (dict==withPrefix64k || match >= lowPrefix) ) {
2252 if ((dict==usingExtDict) && (match < lowPrefix)) {