OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:memLog
(Results
1 - 5
of
5
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v02.c
1875
const U32
memLog
= DTable[0];
1882
if (
memLog
> HUF_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge);
1889
if (tableLog >
memLog
) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */
1926
const int rescale = (
memLog
-tableLog) - 1; /* tableLog <=
memLog
*/
1934
for (consumed = minBits; consumed <=
memLog
- minBits; consumed++)
1944
HUF_fillDTableX4(dt,
memLog
,
2211
const U32
memLog
= DTable[0];
2215
if (
memLog
> HUF_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge);
2222
if (tableLog >
memLog
) return ERROR(tableLog_tooLarge); /* DTable is too small *
[
all
...]
zstd_v03.c
1871
const U32
memLog
= DTable[0];
1878
if (
memLog
> HUF_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge);
1885
if (tableLog >
memLog
) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */
1922
const int rescale = (
memLog
-tableLog) - 1; /* tableLog <=
memLog
*/
1930
for (consumed = minBits; consumed <=
memLog
- minBits; consumed++)
1940
HUF_fillDTableX4(dt,
memLog
,
zstd_v04.c
2028
const U32
memLog
= DTable[0];
2034
if (
memLog
> HUF_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge);
2041
if (tableLog >
memLog
) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */
2078
const int rescale = (
memLog
-tableLog) - 1; /* tableLog <=
memLog
*/
2086
for (consumed = minBits; consumed <=
memLog
- minBits; consumed++)
2096
HUF_fillDTableX4(dt,
memLog
,
zstd_v05.c
2154
const U32
memLog
= DTable[0];
2160
if (
memLog
> HUFv05_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge);
2167
if (tableLog >
memLog
) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */
2201
const int rescale = (
memLog
-tableLog) - 1; /* tableLog <=
memLog
*/
2208
for (consumed = minBits; consumed <=
memLog
- minBits; consumed++) {
2214
HUFv05_fillDTableX4(dt,
memLog
,
zstd_v06.c
2280
const U32
memLog
= DTable[0];
2286
if (
memLog
> HUFv06_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge);
2293
if (tableLog >
memLog
) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */
2322
{ int const rescale = (
memLog
-tableLog) - 1; /* tableLog <=
memLog
*/
2332
for (consumed = minBits; consumed <
memLog
- minBits + 1; consumed++) {
2339
HUFv06_fillDTableX4(dt,
memLog
,
Completed in 48 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026