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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_sequences.c 269 size_t nbSeq_1 = nbSeq;
273 nbSeq_1--;
275 assert(nbSeq_1 > 1);
278 FORWARD_IF_ERROR(FSE_normalizeCount(wksp->norm, tableLog, count, nbSeq_1, max, ZSTD_useLowProbCount(nbSeq_1)), "FSE_normalizeCount failed");
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 893 size_t nbSeq_1 = nbSeq;
895 if (count[llCodeTable[nbSeq-1]]>1) { count[llCodeTable[nbSeq-1]]--; nbSeq_1--; }
896 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max, nbSeq >= 2048);
921 size_t nbSeq_1 = nbSeq;
923 if (count[ofCodeTable[nbSeq-1]]>1) { count[ofCodeTable[nbSeq-1]]--; nbSeq_1--; }
924 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max, nbSeq >= 2048);
951 size_t nbSeq_1 = nbSeq;
953 if (count[mlCodeTable[nbSeq-1]]>1) { count[mlCodeTable[nbSeq-1]]--; nbSeq_1--; }
954 FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max, nbSeq >= 2048);

Completed in 17 milliseconds