HomeSort by: relevance | last modified time | path
    Searched defs:ll0 (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c 597 const U32 ll0, /* tells if associated literal length is 0 or not. This value must be 0 or 1 */
645 assert(ll0 <= 1); /* necessarily 1 or 0 */
646 { U32 const lastR = ZSTD_REP_NUM + ll0;
648 for (repCode = ll0; repCode < lastR; repCode++) {
679 DEBUGLOG(8, "found repCode %u (ll0:%u, offset:%u) of length %u",
680 repCode, ll0, repOffset, repLen);
682 matches[mnum].off = REPCODE_TO_OFFBASE(repCode - ll0 + 1); /* expect value between 1 and 3 */
827 U32 const ll0,
839 U32 const ll0,
849 return ZSTD_insertBtAndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, mls)
1122 U32 const ll0 = !litlen; local
1272 { U32 const ll0 = (opt[cur].litlen == 0); local
    [all...]
zstd_compress.c 3970 * Returns the raw offset represented by the combination of offBase, ll0, and repcode history.
3974 ZSTD_resolveRepcodeToRawOffset(const U32 rep[ZSTD_REP_NUM], const U32 offBase, const U32 ll0)
3976 U32 const adjustedRepCode = OFFBASE_TO_REPCODE(offBase) - 1 + ll0; /* [ 0 - 3 ] */
3979 assert(ll0);
4013 U32 const ll0 = (seq->litLength == 0) && (idx != longLitLenIdx); local
4017 U32 const dRawOffset = ZSTD_resolveRepcodeToRawOffset(dRepcodes->rep, offBase, ll0);
4018 U32 const cRawOffset = ZSTD_resolveRepcodeToRawOffset(cRepcodes->rep, offBase, ll0);
4030 ZSTD_updateRep(dRepcodes->rep, seq->offBase, ll0);
4031 ZSTD_updateRep(cRepcodes->rep, offBase, ll0);
6489 static U32 ZSTD_finalizeOffBase(U32 rawOffset, const U32 rep[ZSTD_REP_NUM], U32 ll0)
6537 U32 const ll0 = (litLength == 0); local
6676 { U32 const ll0 = (litLength == 0); local
    [all...]
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 1300 U32 const ll0 = (llDInfo->baseValue == 0); local
1302 offset = seqState->prevOffset[ll0];
1303 seqState->prevOffset[1] = seqState->prevOffset[!ll0];
1306 offset = ofBase + ll0 + BIT_readBitsFast(&seqState->DStream, 1);

Completed in 37 milliseconds