Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c484 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 …]
Dlz4hc.c83 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()