Lines Matching refs:errorCode
98 unsigned ZDICT_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZDICT_isError() argument
100 const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZDICT_getErrorName() argument
648 { size_t const errorCode = ZSTD_compressBegin_usingCDict(esr.zc, esr.dict); in ZDICT_countEStats() local
649 …if (ZSTD_isError(errorCode)) { DISPLAYLEVEL(1, "warning : ZSTD_compressBegin_usingCDict failed \n"… in ZDICT_countEStats()
752 size_t pos = 0, errorCode; in ZDICT_analyzeEntropy() local
820 …errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowPr… in ZDICT_analyzeEntropy()
821 if (FSE_isError(errorCode)) { in ZDICT_analyzeEntropy()
822 eSize = errorCode; in ZDICT_analyzeEntropy()
826 Offlog = (U32)errorCode; in ZDICT_analyzeEntropy()
829 …errorCode = FSE_normalizeCount(matchLengthNCount, mlLog, matchLengthCount, total, MaxML, /* useLow… in ZDICT_analyzeEntropy()
830 if (FSE_isError(errorCode)) { in ZDICT_analyzeEntropy()
831 eSize = errorCode; in ZDICT_analyzeEntropy()
835 mlLog = (U32)errorCode; in ZDICT_analyzeEntropy()
838 …errorCode = FSE_normalizeCount(litLengthNCount, llLog, litLengthCount, total, MaxLL, /* useLowProb… in ZDICT_analyzeEntropy()
839 if (FSE_isError(errorCode)) { in ZDICT_analyzeEntropy()
840 eSize = errorCode; in ZDICT_analyzeEntropy()
844 llLog = (U32)errorCode; in ZDICT_analyzeEntropy()