OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FSE_isError
(Results
1 - 14
of
14
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/common/
entropy_common.c
31
unsigned
FSE_isError
(size_t code) { return ERR_isError(code); }
63
if (
FSE_isError
(countSize)) return countSize;
273
if (
FSE_isError
(oSize)) return oSize;
fse_decompress.c
32
#define
FSE_isError
ERR_isError
264
if (
FSE_isError
(NCountLength)) return NCountLength;
zstd_internal.h
49
#define
FSE_isError
ERR_isError
fse.h
62
FSE_PUBLIC_API unsigned
FSE_isError
(size_t code); /* tells if a return value is an error code */
105
or an errorCode, which can be tested using
FSE_isError
() */
117
or an errorCode, which can be tested using
FSE_isError
(). */
128
@return : 0, or an errorCode, which can be tested using
FSE_isError
() */
135
or an errorCode, which can be tested using
FSE_isError
() */
147
If there is an error, the function will return an ErrorCode (which can be tested using
FSE_isError
()).
161
If there is an error (ex: invalid tableLog value), the function will return an ErrorCode (which can be tested using
FSE_isError
()).
167
If there is an error, the function will return an ErrorCode (which can be tested using
FSE_isError
(); ex : buffer size too small).
172
If there is an error, both functions will return an ErrorCode (which can be tested using
FSE_isError
()).
178
If there is an error, the function will return an ErrorCode (which can be tested using
FSE_isError
())
[
all
...]
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c
429
static unsigned
FSE_isError
(size_t code) { return (code > (size_t)(-FSE_ERROR_maxCode)); }
793
if (
FSE_isError
(errorCode)) return errorCode;
873
if (
FSE_isError
(errorCode)) return errorCode;
879
if (
FSE_isError
(errorCode)) return errorCode;
964
if (
FSE_isError
(oSize)) return oSize;
1063
if (
FSE_isError
(errorCode)) return errorCode;
1065
if (
FSE_isError
(errorCode)) return errorCode;
1067
if (
FSE_isError
(errorCode)) return errorCode;
1069
if (
FSE_isError
(errorCode)) return errorCode;
1140
if (
FSE_isError
(errorCode)) return errorCode
[
all
...]
zstd_v03.c
1106
static unsigned
FSE_isError
(size_t code) { return ERR_isError(code); }
1293
if (
FSE_isError
(errorCode)) return errorCode;
1373
if (
FSE_isError
(errorCode)) return errorCode;
1379
if (
FSE_isError
(errorCode)) return errorCode;
1519
if (
FSE_isError
(oSize)) return oSize;
2554
if (
FSE_isError
(headerSize)) return ERROR(GENERIC);
2573
if (
FSE_isError
(headerSize)) return ERROR(GENERIC);
2591
if (
FSE_isError
(headerSize)) return ERROR(GENERIC);
zstd_v04.c
379
or an error code, which can be tested using
FSE_isError
()
391
static unsigned
FSE_isError
(size_t code); /* tells if a return value is an error code */
423
or an errorCode, which can be tested using
FSE_isError
()
436
or an errorCode, which can be tested using
FSE_isError
() */
444
or an errorCode, which can be tested using
FSE_isError
() */
462
If there is an error, the function will return an error code, which can be tested using
FSE_isError
().
467
If there is an error, the function will return an error code, which can be tested using
FSE_isError
().
472
If there is an error, the function will return an error code, which can be tested using
FSE_isError
(). (ex: dst buffer too small)
1089
static unsigned
FSE_isError
(size_t code) { return ERR_isError(code); }
1278
if (
FSE_isError
(errorCode)) return errorCode
[
all
...]
zstd_v02.c
1106
static unsigned
FSE_isError
(size_t code) { return ERR_isError(code); }
1293
if (
FSE_isError
(errorCode)) return errorCode;
1373
if (
FSE_isError
(errorCode)) return errorCode;
1379
if (
FSE_isError
(errorCode)) return errorCode;
1523
if (
FSE_isError
(oSize)) return oSize;
2914
if (
FSE_isError
(headerSize)) return ERROR(GENERIC);
2933
if (
FSE_isError
(headerSize)) return ERROR(GENERIC);
2951
if (
FSE_isError
(headerSize)) return ERROR(GENERIC);
/src/external/bsd/zstd/dist/lib/compress/
fse_compress.c
35
#define
FSE_isError
ERR_isError
505
if (
FSE_isError
(errorCode)) return errorCode;
565
if (
FSE_isError
(initError)) return 0; /* not enough space available to write a bitstream */ }
zstd_compress.c
4962
RETURN_ERROR_IF(
FSE_isError
(offcodeHeaderSize), dictionary_corrupted, "");
4965
RETURN_ERROR_IF(
FSE_isError
(FSE_buildCTable_wksp(
4977
RETURN_ERROR_IF(
FSE_isError
(matchlengthHeaderSize), dictionary_corrupted, "");
4979
RETURN_ERROR_IF(
FSE_isError
(FSE_buildCTable_wksp(
4991
RETURN_ERROR_IF(
FSE_isError
(litlengthHeaderSize), dictionary_corrupted, "");
4993
RETURN_ERROR_IF(
FSE_isError
(FSE_buildCTable_wksp(
/src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c
749
if (
FSE_isError
(errorCode)) {
758
if (
FSE_isError
(errorCode)) {
767
if (
FSE_isError
(errorCode)) {
787
if (
FSE_isError
(ohSize)) {
798
if (
FSE_isError
(mhSize)) {
809
if (
FSE_isError
(lhSize)) {
/src/external/bsd/zstd/dist/tests/
decodecorpus.c
868
if (
FSE_isError
(NCountSize)) return ERROR(GENERIC);
896
if (
FSE_isError
(NCountSize)) return ERROR(GENERIC);
926
if (
FSE_isError
(NCountSize)) return ERROR(GENERIC);
/src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress.c
1482
RETURN_ERROR_IF(
FSE_isError
(offcodeHeaderSize), dictionary_corrupted, "");
1497
RETURN_ERROR_IF(
FSE_isError
(matchlengthHeaderSize), dictionary_corrupted, "");
1512
RETURN_ERROR_IF(
FSE_isError
(litlengthHeaderSize), dictionary_corrupted, "");
zstd_decompress_block.c
683
RETURN_ERROR_IF(
FSE_isError
(headerSize), corruption_detected, "");
Completed in 57 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026