HomeSort by relevance Sort by last modified time
    Searched refs:dictID (Results 1 - 3 of 3) sorted by null

  /external/lz4/tests/
frametest.c 494 /* dictID tests */
496 U32 const dictID = 0x99;
499 DISPLAYLEVEL(3, "insert a dictID : ");
501 prefs.frameInfo.dictID = dictID;
505 DISPLAYLEVEL(3, "read a dictID : ");
509 if (prefs.frameInfo.dictID != dictID) goto _output_error;
510 DISPLAYLEVEL(3, "%u \n", (U32)prefs.frameInfo.dictID);
    [all...]
  /external/lz4/lib/
lz4frame.h 172 unsigned dictID; /* Dictionary ID, sent by compressor to help decoder select correct dictionary; 0 == no dictID provided */
349 * This function extracts frame parameters (max blockSize, dictID, etc.).
501 * but it's not recommended, as it's the only way to provide dictID in the frame header.
516 * however, it's the only way to provide dictID in the frame header.
lz4frame.c 353 * however, it's the only way to provide a dictID, so it's not recommended.
661 + (cctxPtr->prefs.frameInfo.dictID > 0) );
671 if (cctxPtr->prefs.frameInfo.dictID) {
672 LZ4F_writeLE32(dstPtr, cctxPtr->prefs.frameInfo.dictID);
    [all...]

Completed in 102 milliseconds