Home
last modified time | relevance | path

Searched refs:mnum (Results 1 – 2 of 2) sorted by relevance

/dflybsd-src/contrib/zstd/lib/compress/
H A Dzstd_opt.c543 U32 mnum = 0; in ZSTD_insertBtAndGetAllMatches() local
600 matches[mnum].off = repCode - ll0; in ZSTD_insertBtAndGetAllMatches()
601 matches[mnum].len = (U32)repLen; in ZSTD_insertBtAndGetAllMatches()
602 mnum++; in ZSTD_insertBtAndGetAllMatches()
605 return mnum; in ZSTD_insertBtAndGetAllMatches()
628 assert(mnum==0); /* no prior solution */ in ZSTD_insertBtAndGetAllMatches()
631 mnum = 1; in ZSTD_insertBtAndGetAllMatches()
668 matches[mnum].off = (curr - matchIndex) + ZSTD_REP_MOVE; in ZSTD_insertBtAndGetAllMatches()
669 matches[mnum].len = (U32)matchLength; in ZSTD_insertBtAndGetAllMatches()
670 mnum++; in ZSTD_insertBtAndGetAllMatches()
[all …]
/dflybsd-src/contrib/cvs-1.12/src/
H A Drcs.c7029 int mnum; in month_printname() local
7031 mnum = atoi (month); in month_printname()
7032 if (mnum < 1 || mnum > 12) in month_printname()
7034 return months[mnum - 1]; in month_printname()