OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LZ4_MAX_INPUT_SIZE
(Results
1 - 2
of
2
) sorted by null
/external/lz4/lib/
lz4.h
81
inputSize : Max supported value is
LZ4_MAX_INPUT_SIZE
100
#define
LZ4_MAX_INPUT_SIZE
0x7E000000 /* 2 113 929 216 bytes */
101
#define LZ4_COMPRESSBOUND(isize) ((unsigned int)(isize) > (unsigned int)
LZ4_MAX_INPUT_SIZE
? 0 : (isize) + ((isize)/255) + 16)
109
isize : is the input size. Max supported value is
LZ4_MAX_INPUT_SIZE
111
or 0, if input size is too large ( >
LZ4_MAX_INPUT_SIZE
)
lz4.c
530
if ((U32)inputSize > (U32)
LZ4_MAX_INPUT_SIZE
) return 0; /* Unsupported input size, too large (or negative) */
[
all
...]
Completed in 1251 milliseconds