comparison contrib/python-zstandard/zstd/common/zstd_errors.h @ 42070:675775c33ab6

zstandard: vendor python-zstandard 0.11 The upstream source distribution from PyPI was extracted. Unwanted files were removed. The clang-format ignore list was updated to reflect the new source of files. The project contains a vendored copy of zstandard 1.3.8. The old version was 1.3.6. This should result in some minor performance wins. test-check-py3-compat.t was updated to reflect now-passing tests on Python 3.8. Some HTTP tests were updated to reflect new zstd compression output. # no-check-commit because 3rd party code has different style guidelines Differential Revision: https://phab.mercurial-scm.org/D6199
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 04 Apr 2019 17:34:43 -0700
parents b1fb341d8a61
children
comparison
equal deleted inserted replaced
42069:668eff08387f 42070:675775c33ab6
70 ZSTD_error_init_missing = 62, 70 ZSTD_error_init_missing = 62,
71 ZSTD_error_memory_allocation = 64, 71 ZSTD_error_memory_allocation = 64,
72 ZSTD_error_workSpace_tooSmall= 66, 72 ZSTD_error_workSpace_tooSmall= 66,
73 ZSTD_error_dstSize_tooSmall = 70, 73 ZSTD_error_dstSize_tooSmall = 70,
74 ZSTD_error_srcSize_wrong = 72, 74 ZSTD_error_srcSize_wrong = 72,
75 ZSTD_error_dstBuffer_null = 74,
75 /* following error codes are __NOT STABLE__, they can be removed or changed in future versions */ 76 /* following error codes are __NOT STABLE__, they can be removed or changed in future versions */
76 ZSTD_error_frameIndex_tooLarge = 100, 77 ZSTD_error_frameIndex_tooLarge = 100,
77 ZSTD_error_seekableIO = 102, 78 ZSTD_error_seekableIO = 102,
78 ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */ 79 ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */
79 } ZSTD_ErrorCode; 80 } ZSTD_ErrorCode;