Lines Matching refs:dictDirective

1151     const dict_directive dictDirective,  in LZ4_compress_generic_validated()  argument
1164 dictDirective == usingDictCtx ? dictCtx->dictionary : cctx->dictionary; in LZ4_compress_generic_validated()
1166 dictDirective == usingDictCtx ? dictCtx->dictSize : cctx->dictSize; in LZ4_compress_generic_validated()
1167 …const U32 dictDelta = (dictDirective == usingDictCtx) ? startIndex - dictCtx->currentOffset : 0; /… in LZ4_compress_generic_validated()
1169 int const maybe_extMem = (dictDirective == usingExtDict) || (dictDirective == usingDictCtx); in LZ4_compress_generic_validated()
1179 …const BYTE *dictBase = !dictionary ? NULL : (dictDirective == usingDictCtx) ? dictionary + dictSiz… in LZ4_compress_generic_validated()
1201 assert(dictDirective == noDict); /* only supported use case with byPtr */ in LZ4_compress_generic_validated()
1204 lowLimit = (const BYTE *)source - (dictDirective == withPrefix64k ? dictSize : 0); in LZ4_compress_generic_validated()
1207 if (dictDirective == usingDictCtx) in LZ4_compress_generic_validated()
1280 if (dictDirective == usingDictCtx) in LZ4_compress_generic_validated()
1297 else if (dictDirective == usingExtDict) in LZ4_compress_generic_validated()
1419 …if ((dictDirective == usingExtDict || dictDirective == usingDictCtx) && (lowLimit == dictionary) /… in LZ4_compress_generic_validated()
1523 if (dictDirective == usingDictCtx) in LZ4_compress_generic_validated()
1539 else if (dictDirective == usingExtDict) in LZ4_compress_generic_validated()
1635 const dict_directive dictDirective, in LZ4_compress_generic() argument
1666 tableType, dictDirective, dictIssue, acceleration); in LZ4_compress_generic()