HomeSort by: relevance | last modified time | path
    Searched refs:REPCODE_TO_OFFBASE (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_internal.h 718 #define REPCODE1_TO_OFFBASE REPCODE_TO_OFFBASE(1)
719 #define REPCODE2_TO_OFFBASE REPCODE_TO_OFFBASE(2)
720 #define REPCODE3_TO_OFFBASE REPCODE_TO_OFFBASE(3)
721 #define REPCODE_TO_OFFBASE(r) (assert((r)>=1), assert((r)<=ZSTD_REP_NUM), (r)) /* accepts IDs 1,2,3 */
731 * @offBase : Users should employ macros REPCODE_TO_OFFBASE() and OFFSET_TO_OFFBASE().
771 * @offBase : Users should employ macros REPCODE_TO_OFFBASE() and OFFSET_TO_OFFBASE().
zstd_opt.c 682 matches[mnum].off = REPCODE_TO_OFFBASE(repCode - ll0 + 1); /* expect value between 1 and 3 */
zstd_compress.c 6629 offBase = REPCODE_TO_OFFBASE(2 - ll0);
6631 offBase = REPCODE_TO_OFFBASE(3 - ll0);
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 752 offBase = REPCODE_TO_OFFBASE(randomRepIndex + 1); /* expects values between 1 & 3 */

Completed in 70 milliseconds