OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ERR_isError
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/common/
error_private.h
58
ERR_STATIC unsigned
ERR_isError
(size_t code) { return (code > ERROR(maxCode)); }
60
ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!
ERR_isError
(code)) return (ERR_enum)0; return (ERR_enum) (0-code); }
66
if (
ERR_isError
(e)) \
154
if (
ERR_isError
(err_code)) { \
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v03.c
525
ERR_STATIC unsigned
ERR_isError
(size_t code) { return (code > ERROR(maxCode)); }
530
if (
ERR_isError
(code)) return ERR_strings[-(int)(code)];
1106
static unsigned FSE_isError(size_t code) { return
ERR_isError
(code); }
1451
static unsigned HUF_isError(size_t code) { return
ERR_isError
(code); }
2373
static unsigned ZSTD_isError(size_t code) { return
ERR_isError
(code); }
2795
if (
ERR_isError
(errorCode)) return ERROR(corruption_detected);
zstd_v02.c
524
ERR_STATIC unsigned
ERR_isError
(size_t code) { return (code > ERROR(maxCode)); }
529
if (
ERR_isError
(code)) return ERR_strings[-(int)(code)];
1106
static unsigned FSE_isError(size_t code) { return
ERR_isError
(code); }
1455
static unsigned HUF_isError(size_t code) { return
ERR_isError
(code); }
2733
static unsigned ZSTD_isError(size_t code) { return
ERR_isError
(code); }
3156
if (
ERR_isError
(errorCode)) return ERROR(corruption_detected);
Completed in 29 milliseconds
Indexes created Tue Mar 03 05:31:39 UTC 2026