Searched refs:usingDictCtx (Results 1 – 2 of 2) sorted by relevance
/external/lz4/lib/ |
D | lz4.c | 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() [all …]
|
D | lz4hc.c | 83 typedef enum { noDictCtx, usingDictCtx } dictCtx_directive; enumerator 350 if (dict == usingDictCtx && nbAttempts && ipIndex - lowestMatchIndex < MAX_DISTANCE) { in LZ4HC_InsertAndGetWiderMatch() 798 …4HC_compress_generic_internal(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit, usingDictCtx); in LZ4HC_compress_generic_dictCtx()
|