Lines Matching refs:usingDictCtx
484 typedef enum { noDict = 0, withPrefix64k, usingExtDict, usingDictCtx } dict_directive; enumerator
670 dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; in LZ4_compress_generic()
672 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic()
673 …const U32 dictDelta = (dictDirective == usingDictCtx) ? startIndex - dictCtx->currentOffset : 0; … in LZ4_compress_generic()
675 int const maybe_extMem = (dictDirective == usingExtDict) || (dictDirective == usingDictCtx); in LZ4_compress_generic()
685 const BYTE* dictBase = (dictDirective == usingDictCtx) ? in LZ4_compress_generic()
706 if (dictDirective == usingDictCtx) { in LZ4_compress_generic()
767 if (dictDirective == usingDictCtx) { in LZ4_compress_generic()
867 if ( (dictDirective==usingExtDict || dictDirective==usingDictCtx) in LZ4_compress_generic()
935 if (dictDirective == usingDictCtx) { in LZ4_compress_generic()
1324 …urce, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, usingDictCtx, noDictIssue, a… in LZ4_compress_fast_continue()