Home
last modified time | relevance | path

Searched refs:dictID (Results 1 – 4 of 4) sorted by relevance

/third_party/lz4/tests/
Dframetest.c517 U32 const dictID = 0x99; in basicTests() local
522 prefs.frameInfo.dictID = dictID; in basicTests()
530 if (prefs.frameInfo.dictID != dictID) goto _output_error; in basicTests()
531 DISPLAYLEVEL(3, "%u \n", (U32)prefs.frameInfo.dictID); in basicTests()
/third_party/lz4/lib/
Dlz4frame.h181 …unsigned dictID; /* Dictionary ID, sent by compressor to help decoder s… member
Dlz4frame.c680 + (cctxPtr->prefs.frameInfo.dictID > 0) ); in LZ4F_compressBegin_usingCDict()
690 if (cctxPtr->prefs.frameInfo.dictID) { in LZ4F_compressBegin_usingCDict()
691 LZ4F_writeLE32(dstPtr, cctxPtr->prefs.frameInfo.dictID); in LZ4F_compressBegin_usingCDict()
1200 dctx->frameInfo.dictID = LZ4F_readLE32(srcPtr + frameHeaderSize - 5); in LZ4F_decodeHeader()
/third_party/lz4/doc/
Dlz4_Frame_format.md233 It's presumed that the 32-bits dictID uniquely identifies a dictionary.