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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 493 const U32 dictAndPrefixLength = (U32)(istart - prefixStart + dictEnd - dictStart);
516 ip0 += (dictAndPrefixLength == 0);
519 assert(offset_1 <= dictAndPrefixLength);
520 assert(offset_2 <= dictAndPrefixLength);
zstd_double_fast.c 349 const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictStart));
364 ip += (dictAndPrefixLength == 0);
368 assert(offset_1 <= dictAndPrefixLength);
369 assert(offset_2 <= dictAndPrefixLength);
zstd_lazy.c 1548 const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictLowest));
1551 ip += (dictAndPrefixLength == 0);
1562 assert(offset_1 <= dictAndPrefixLength);
1563 assert(offset_2 <= dictAndPrefixLength);

Completed in 30 milliseconds