Home
last modified time | relevance | path

Searched refs:errorCode (Results 1 – 8 of 8) sorted by relevance

/dflybsd-src/contrib/zstd/lib/deprecated/
H A Dzbuff_common.c23 unsigned ZBUFF_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZBUFF_isError() argument
26 const char* ZBUFF_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZBUFF_getErrorName() argument
H A Dzbuff.h163 ZBUFF_DEPRECATED("use ZSTD_isError") unsigned ZBUFF_isError(size_t errorCode);
164 ZBUFF_DEPRECATED("use ZSTD_getErrorName") const char* ZBUFF_getErrorName(size_t errorCode);
/dflybsd-src/contrib/zstd/lib/dictBuilder/
H A Dzdict.c93 unsigned ZDICT_isError(size_t errorCode) { return ERR_isError(errorCode); } in ZDICT_isError() argument
95 const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } in ZDICT_getErrorName() argument
623 { size_t const errorCode = ZSTD_compressBegin_usingCDict(esr.zc, esr.dict); in ZDICT_countEStats() local
624 …if (ZSTD_isError(errorCode)) { DISPLAYLEVEL(1, "warning : ZSTD_compressBegin_usingCDict failed \n"… in ZDICT_countEStats()
727 size_t pos = 0, errorCode; in ZDICT_analyzeEntropy() local
788errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowPr… in ZDICT_analyzeEntropy()
789 if (FSE_isError(errorCode)) { in ZDICT_analyzeEntropy()
790 eSize = errorCode; in ZDICT_analyzeEntropy()
794 Offlog = (U32)errorCode; in ZDICT_analyzeEntropy()
797errorCode = FSE_normalizeCount(matchLengthNCount, mlLog, matchLengthCount, total, MaxML, /* useLow… in ZDICT_analyzeEntropy()
[all …]
H A Dzdict.h115 ZDICTLIB_API unsigned ZDICT_isError(size_t errorCode);
116 ZDICTLIB_API const char* ZDICT_getErrorName(size_t errorCode);
/dflybsd-src/contrib/zstd/programs/
H A Dbenchzstd.c829 { int const errorCode = BMK_loadFiles(dictBuffer, dictBufferSize, in BMK_benchFilesAdvanced() local
832 if (errorCode) { in BMK_benchFilesAdvanced()
852 { int const errorCode = BMK_loadFiles(srcBuffer, benchedSize, in BMK_benchFilesAdvanced() local
855 if (errorCode) { in BMK_benchFilesAdvanced()
H A Dfileio.c1194 LZ4F_errorCode_t const errorCode = LZ4F_createCompressionContext(&ctx, LZ4F_VERSION); in FIO_compressLz4Frame() local
1195 if (LZ4F_isError(errorCode)) in FIO_compressLz4Frame()
2319 LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in FIO_decompressLz4Frame() local
2323 if (LZ4F_isError(errorCode)) { in FIO_decompressLz4Frame()
/dflybsd-src/contrib/zstd/lib/compress/
H A Dfse_compress.c476 …size_t const errorCode = FSE_normalizeM2(normalizedCounter, tableLog, count, total, maxSymbolValue… in FSE_normalizeCount() local
477 if (FSE_isError(errorCode)) return errorCode; in FSE_normalizeCount()
/dflybsd-src/sys/dev/drm/amd/display/dc/
H A Ddm_services_types.h220 uint8_t errorCode; /* Byte 4 */ member